[Console] added __get() to Command to have shorter and more readable code in commands

This commit is contained in:
Fabien Potencier 2010-03-10 17:01:50 +01:00
parent 7c727355d1
commit d229ce584f
1 changed files with 14 additions and 0 deletions

View File

@ -423,6 +423,20 @@ class Command
return $this->application->getHelperSet()->get($name);
}
/**
* Gets a helper instance by name.
*
* @param string $name The helper name
*
* @return mixed The helper value
*
* @throws \InvalidArgumentException if the helper is not defined
*/
public function __get($name)
{
return $this->application->getHelperSet()->get($name);
}
/**
* Returns a text representation of the command.
*