From ae8704cdce1a3e87294cdfd1a2f7d3d2fe1808a8 Mon Sep 17 00:00:00 2001 From: Adrien BRAULT Date: Thu, 16 Feb 2012 22:26:30 +0100 Subject: [PATCH] [Console] Fix wrong ref in phpdoc --- src/Symfony/Component/Console/Command/Command.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Console/Command/Command.php b/src/Symfony/Component/Console/Command/Command.php index dbf269e1fa..44e93af34a 100644 --- a/src/Symfony/Component/Console/Command/Command.php +++ b/src/Symfony/Component/Console/Command/Command.php @@ -324,7 +324,7 @@ class Command * @param string $shortcut The shortcut (can be null) * @param integer $mode The option mode: One of the InputOption::VALUE_* constants * @param string $description A description text - * @param mixed $default The default value (must be null for InputOption::VALUE_REQUIRED or self::VALUE_NONE) + * @param mixed $default The default value (must be null for InputOption::VALUE_REQUIRED or InputOption::VALUE_NONE) * * @return Command The current instance *