w3designweb /
laravel-qapla
| 1 | <?php |
||
| 2 | namespace W3design\Qapla; |
||
| 3 | use Illuminate\Support\ServiceProvider; |
||
| 4 | |||
| 5 | class QaplaServiceProvider extends ServiceProvider |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * Bootstrap the application services. |
||
| 9 | */ |
||
| 10 | public function boot() |
||
| 11 | { |
||
| 12 | $this->publishes([ |
||
| 13 | __DIR__.'/../config/config.php' => config_path('qapla.php'), |
||
|
0 ignored issues
–
show
Bug
introduced
by
Loading history...
|
|||
| 14 | ], 'config'); |
||
| 15 | } |
||
| 16 | /** |
||
| 17 | * Register the application services. |
||
| 18 | */ |
||
| 19 | public function register() |
||
| 20 | { |
||
| 21 | $this->mergeConfigFrom(__DIR__.'/../config/config.php', 'qapla'); |
||
| 22 | } |
||
| 23 | } |