/**
  * Show a list of your organizations on Pantheon
  *
  * @subcommand list
  *
  */
 public function all($args, $assoc_args)
 {
     $user = new User(new stdClass(), array());
     $data = array();
     foreach ($user->organizations() as $org_id => $org) {
         $data[] = array('name' => $org->name, 'id' => $org_id);
     }
     $this->handleDisplay($data);
 }