Example #1
0
 /**
  * Returns the namespace part of the command name.
  * 
  * This method is not part of public API and should not be used directly.
  *
  * @param string $name The full name of the command
  * @param string $limit The maximum number of parts of the namespace
  * @return string The namespace of the command
  * @static 
  */
 public static function extractNamespace($name, $limit = null)
 {
     //Method inherited from \Symfony\Component\Console\Application
     return \Illuminate\Console\Application::extractNamespace($name, $limit);
 }