| Total Complexity | 2 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | class GeneratorServiceProvider extends ServiceProvider |
||
| 22 | { |
||
| 23 | |||
| 24 | protected $commands = [ |
||
| 25 | FactoryMakeCommand::class, |
||
| 26 | CommandMakeCommand::class, |
||
| 27 | ControllerMakeCommand::class, |
||
| 28 | EventMakeCommand::class, |
||
| 29 | JobMakeCommand::class, |
||
| 30 | ListenerMakeCommand::class |
||
| 31 | ]; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Boot the application events. |
||
| 35 | * |
||
| 36 | * @return void |
||
| 37 | */ |
||
| 38 | public function boot() |
||
| 40 | } |
||
| 41 | |||
| 42 | /** |
||
| 43 | * Register the service provider. |
||
| 44 | * |
||
| 45 | * @return void |
||
| 46 | */ |
||
| 47 | public function register() |
||
| 52 |