Illuminate\Foundation\Console\AppNameCommand::setBootstrapNamespaces PHP Method

setBootstrapNamespaces() protected method

Set the bootstrap namespaces.
protected setBootstrapNamespaces ( ) : void
return void
    protected function setBootstrapNamespaces()
    {
        $search = [$this->currentRoot . '\\Http', $this->currentRoot . '\\Console', $this->currentRoot . '\\Exceptions'];
        $replace = [$this->argument('name') . '\\Http', $this->argument('name') . '\\Console', $this->argument('name') . '\\Exceptions'];
        $this->replaceIn($this->getBootstrapPath(), $search, $replace);
    }