| Conditions | 2 |
| Paths | 2 |
| Total Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | public function boot() |
||
| 14 | { |
||
| 15 | if ($this->app->runningInConsole()) { |
||
| 16 | $this->publishes([ |
||
| 17 | __DIR__.'/../config/actions.php' => config_path('actions.php'), |
||
| 18 | ]); |
||
| 19 | } |
||
| 20 | |||
| 21 | $this->mergeConfigFrom(__DIR__.'/../config/actions.php', 'actions'); |
||
| 22 | |||
| 23 | $this->commands([ |
||
| 24 | ActionMakeCommand::class, |
||
| 25 | ]); |
||
| 26 | } |
||
| 27 | } |
||
| 28 |