Devise\DeviseServiceProvider::registerConfigMerging PHP Method

registerConfigMerging() private method

handles the merging of the devise package configs and the app configs
private registerConfigMerging ( ) : void
return void
    private function registerConfigMerging()
    {
        $publishes = [];
        foreach ($this->configFiles as $key) {
            $configFile = str_replace('.', DIRECTORY_SEPARATOR, $key);
            $this->mergeConfigFrom(__DIR__ . "/../config/{$configFile}.php", "{$key}");
        }
    }