浏览代码

Merge remote branch 'hhamon/console_fix'

* hhamon/console_fix:
  [Console] fixed phpdoc for Command class.
Fabien Potencier 14 年之前
父节点
当前提交
82e1713850
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/Symfony/Component/Console/Command/Command.php

+ 2 - 2
src/Symfony/Component/Console/Command/Command.php

@@ -110,7 +110,7 @@ class Command
      *
      * @return integer 0 if everything went fine, or an error code
      *
-     * @throws \LogicException When this abstract class is not implemented
+     * @throws \LogicException When this abstract method is not implemented
      * @see    setCode()
      */
     protected function execute(InputInterface $input, OutputInterface $output)
@@ -349,7 +349,7 @@ class Command
     }
 
     /**
-     * Returns the command name
+     * Returns the command name.
      *
      * @return string The command name
      *