예제 #1
0
 /**
  * Finds a command by name or alias.
  * 
  * Contrary to get, this command tries to find the best
  * match if you give it an abbreviation of a name or alias.
  *
  * @param string $name A command name or a command alias
  * @return \Symfony\Component\Console\Command A Command instance
  * @throws \InvalidArgumentException When command name is incorrect or ambiguous
  * @api 
  * @static 
  */
 public static function find($name)
 {
     //Method inherited from \Symfony\Component\Console\Application
     return \Illuminate\Console\Application::find($name);
 }