소스 검색

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
      *