1 | <?php declare(strict_types=1); |
||
9 | class LaravelPretendServiceProvider extends ServiceProvider |
||
10 | { |
||
11 | /** |
||
12 | * Bootstrap the application services. |
||
13 | * |
||
14 | * @return void |
||
15 | */ |
||
16 | 7 | public function boot() |
|
30 | |||
31 | /** |
||
32 | * Register the application services. |
||
33 | * |
||
34 | * @return void |
||
35 | */ |
||
36 | 7 | public function register() |
|
46 | |||
47 | /** |
||
48 | * Check if we are running Lumen or not. |
||
49 | * |
||
50 | * @return bool |
||
51 | */ |
||
52 | 7 | protected function isLumen(): bool |
|
56 | } |
||
57 |