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

setAppConfigNamespaces() protected method

Set the application provider namespaces.
protected setAppConfigNamespaces ( ) : void
return void
    protected function setAppConfigNamespaces()
    {
        $search = [$this->currentRoot . '\\Providers', $this->currentRoot . '\\Http\\Controllers\\'];
        $replace = [$this->argument('name') . '\\Providers', $this->argument('name') . '\\Http\\Controllers\\'];
        $this->replaceIn($this->getConfigPath('app'), $search, $replace);
    }