| 1 | <?php |
||
| 7 | class LaradeckCommandsServiceProvider extends ServiceProvider |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var array |
||
| 11 | */ |
||
| 12 | protected $commands = [ |
||
| 13 | DownloadCommand::class, |
||
| 14 | MakeViewCommand::class |
||
| 15 | ]; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Perform post-registration booting of services. |
||
| 19 | * |
||
| 20 | * @return void |
||
| 21 | */ |
||
| 22 | public function boot() |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Register any package services. |
||
| 31 | * |
||
| 32 | * @return void |
||
| 33 | */ |
||
| 34 | public function register() |
||
| 38 | } |