Autarky\Config\ConfigProvider::register PHP Метод

register() публичный Метод

public register ( )
    public function register()
    {
        $this->app->setConfig($store = $this->getConfigStore());
        if ($store->has('app.configurators')) {
            foreach ($store->get('app.configurators') as $configurator) {
                $this->app->config($configurator);
            }
        }
    }