| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | public function boot() |
||
| 13 | { |
||
| 14 | $this->publishes([ |
||
| 15 | __DIR__.'/../config/laravel-slack-slash-command.php' => config_path('laravel-slack-slash-command.php'), |
||
| 16 | ], 'config'); |
||
| 17 | |||
| 18 | $this->app['router']->post(config('laravel-slack-slash-command')['url'], Controller::class.'@getResponse'); |
||
| 19 | } |
||
| 20 | |||
| 29 |