Ejemplo n.º 1
0
 /**
  * Returns true if the command exists, false otherwise.
  *
  * @param string $name The command name or alias
  * @return bool true if the command exists, false otherwise
  * @api 
  * @static 
  */
 public static function has($name)
 {
     //Method inherited from \Symfony\Component\Console\Application
     return \Illuminate\Console\Application::has($name);
 }