| Conditions | 2 |
| Paths | 2 |
| Total Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | public function boot() |
||
| 20 | { |
||
| 21 | $this->publishes([ |
||
| 22 | realpath(__DIR__).'/config/config.php' => config_path('ab.php'), |
||
| 23 | ]); |
||
| 24 | |||
| 25 | if ($this->app->runningInConsole()) { |
||
| 26 | $this->commands([ |
||
| 27 | ExportCommand::class, |
||
| 28 | FlushCommand::class, |
||
| 29 | InstallCommand::class, |
||
| 30 | ReportCommand::class, |
||
| 31 | ]); |
||
| 32 | } |
||
| 33 | } |
||
| 34 | |||
| 57 |
This check looks for function calls that miss required arguments.