Skip to content

Commit

Permalink
Issue pantheon-systems#63: Move @subcommand to the bottom of DocPar…
Browse files Browse the repository at this point in the history
…ser info

Found out that the `@subcommand sites` needs to be at the bottom
of the DocParser block.

I also made the formatting of that information a little more
consistent with the rest of the commands.

Signed-off-by: Elliot Voris <elliot@voris.me>
  • Loading branch information
ElliotFriend committed Jan 31, 2015
1 parent 8a07de5 commit d43655a
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions php/commands/organizations.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public function __construct() {
*
* @subcommand list
*
*/
*/
public function all($args, $assoc_args) {
$user = new User();
$data = array();
Expand All @@ -36,17 +36,19 @@ public function all($args, $assoc_args) {
/**
* List an organizations sites
*
* @subcommand sites
*
* ## Options
* ## OPTIONS
*
* [--org=<org>]
* : Organization name or Id
*
* [--add=<site>]
* : Site to add to organization
*
* [--remove=<site>]
* : Site to remove from organization
*
* @subcommand sites
*
*/
public function sites($args, $assoc_args) {
$orgs = array();
Expand Down

0 comments on commit d43655a

Please sign in to comment.