Browse Source

[Console] fixed phpdoc for Command class.

Hugo Hamon 14 years ago
parent
commit
c6bd284ecd
1 changed files with 2 additions and 2 deletions
  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
      *