Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | public function boot() |
||
23 | { |
||
24 | // Publishing is only necessary when using the CLI. |
||
25 | if ($this->app->runningInConsole()) { |
||
26 | // Publishing the configuration file. Use : |
||
27 | // php artisan vendor:publish --provider="Vansteen\Sendinblue\SendinblueServiceProvider" |
||
28 | $this->publishes([ |
||
29 | __DIR__ . '/../config/sendinblue.php' => config_path('sendinblue.php'), |
||
30 | ], 'sendinblue.config'); |
||
31 | } |
||
50 |