Illuminate\Foundation\Console\AppNameCommand::fire PHP Méthode

fire() public méthode

Execute the console command.
public fire ( ) : void
Résultat void
    public function fire()
    {
        $this->currentRoot = trim($this->laravel->getNamespace(), '\\');
        $this->setBootstrapNamespaces();
        $this->setAppDirectoryNamespace();
        $this->setConfigNamespaces();
        $this->setComposerNamespace();
        $this->setDatabaseFactoryNamespaces();
        $this->info('Application namespace set!');
        $this->composer->dumpAutoloads();
        $this->call('clear-compiled');
    }