You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
\Illuminate\Support\ServiceProvider.php line 67 function "mergeConfigFrom" $this->app['config']->set($key, array_merge($config, require $path));
The bug is array_merge($config, require $path) .. need to use the array_merge(require $path, $config) instead.
When I use the "mergeConfigFrom" my config options (same key) should be overwritten. Try to debug this feature with the custom "auth" config (useful for multiauth).