From 1f4f856b1e22d058ad97615456a820fde54bec7f Mon Sep 17 00:00:00 2001 From: Moshe Weitzman Date: Thu, 21 Sep 2017 22:04:32 -0400 Subject: [PATCH] Minor formatting --- src/Commands/core/NotifyCommands.php | 2 +- src/Commands/core/TopicCommands.php | 6 ------ 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/src/Commands/core/NotifyCommands.php b/src/Commands/core/NotifyCommands.php index 522cbfc7ca..ed560db938 100644 --- a/src/Commands/core/NotifyCommands.php +++ b/src/Commands/core/NotifyCommands.php @@ -22,7 +22,7 @@ class NotifyCommands extends DrushCommands * @option notify-audio Notify via audio alert. If set to a number, commands that finish in fewer seconds won't notify. * @option notify-cmd Specify the shell command to trigger the notification. * @option notify-cmd-audio Specify the shell command to trigger the audio notification. - * @todo hidden is not yet part of annotated-command project. It is recognized by Drush's annotation_adapter.inc + * @todo hidden-options is not yet part of annotated-command project. It is recognized by Drush's annotation_adapter.inc * @hidden-options notify,notify-audio,notify-cmd,notify-cmd-audio */ public function notify() diff --git a/src/Commands/core/TopicCommands.php b/src/Commands/core/TopicCommands.php index 9bcbace428..7233295f71 100644 --- a/src/Commands/core/TopicCommands.php +++ b/src/Commands/core/TopicCommands.php @@ -28,7 +28,6 @@ class TopicCommands extends DrushCommands * @remote-tty * @aliases topic * @topics docs-readme - * @complete \Drush\Commands\core\TopicCommands::complete */ public function topic($topic_name) { @@ -95,9 +94,4 @@ public static function getAllTopics() } return $topics; } - - public function complete() - { - return array('values' => array_keys(self::getAllTopics())); - } }