Example #1
0
 /**
  * Finds a registered namespace by a name or an abbreviation.
  *
  * @param string $namespace A namespace or abbreviation to search for
  * @return string A registered namespace
  * @throws \InvalidArgumentException When namespace is incorrect or ambiguous
  * @static 
  */
 public static function findNamespace($namespace)
 {
     //Method inherited from \Symfony\Component\Console\Application
     return \Illuminate\Console\Application::findNamespace($namespace);
 }