| Total Complexity | 3 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class WebhookServerServiceProvider extends ServiceProvider |
||
| 8 | { |
||
| 9 | public function boot() |
||
| 10 | { |
||
| 11 | if ($this->app->runningInConsole()) { |
||
| 12 | $this->publishes([ |
||
| 13 | __DIR__.'/../config/webhook-server.php' => config_path('webhook-server.php'), |
||
| 14 | ], 'config'); |
||
| 15 | } |
||
| 16 | } |
||
| 17 | |||
| 18 | public function register() |
||
| 21 | } |
||
| 22 | } |
||
| 23 |