Commit 5054701d authored by Nguyen Van Anh's avatar Nguyen Van Anh

Merge pull request #12 from slovenianGooner/master

Fix mergeConfig arguments order.
parents 9550ea13 5152f16e
...@@ -45,7 +45,7 @@ class NoCaptchaServiceProvider extends ServiceProvider { ...@@ -45,7 +45,7 @@ class NoCaptchaServiceProvider extends ServiceProvider {
{ {
$path = __DIR__.'/config/captcha.php'; $path = __DIR__.'/config/captcha.php';
$this->mergeConfigFrom('captcha', $path); $this->mergeConfigFrom($path, 'captcha');
$this->publishes([$path => config_path('captcha.php')]); $this->publishes([$path => config_path('captcha.php')]);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment