Browse Source

typo fix

tags/1.2.0
Paul Rock 6 years ago
parent
commit
682f1d98a2
  1. 4
      src/Laravel/ClientServiceProvide.php

4
src/Laravel/ClientServiceProvide.php

@ -14,7 +14,7 @@ class ClientServiceProvide extends BaseServiceProvider
public function boot() public function boot()
{ {
$this->publishes([ $this->publishes([
__DIR__ . '/../configs/routeros-api.php' => config_path('routeros-api.php'),
__DIR__ . '/../../configs/routeros-api.php' => config_path('routeros-api.php'),
]); ]);
} }
@ -26,7 +26,7 @@ class ClientServiceProvide extends BaseServiceProvider
public function register() public function register()
{ {
$this->mergeConfigFrom( $this->mergeConfigFrom(
__DIR__ . '/../configs/routeros-api.php', 'routeros-api'
__DIR__ . '/../../configs/routeros-api.php', 'routeros-api'
); );
$this->app->bind(ClientWrapper::class); $this->app->bind(ClientWrapper::class);

Loading…
Cancel
Save