Example #1
0
 /**
  * Returns a registered command by name or alias.
  *
  * @param string $name The command name or alias
  * @return \Symfony\Component\Console\Command A Command object
  * @throws \InvalidArgumentException When command name given does not exist
  * @api 
  * @static 
  */
 public static function get($name)
 {
     //Method inherited from \Symfony\Component\Console\Application
     return \Illuminate\Console\Application::get($name);
 }