| Total Complexity | 3 |
| Total Lines | 38 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | class ClientServiceProvider extends LaravelServiceProvider |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * Indicates if loading of the provider is deferred. |
||
| 18 | * |
||
| 19 | * @var bool |
||
| 20 | */ |
||
| 21 | protected $defer = true; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Get the services provided by the provider. |
||
| 25 | * |
||
| 26 | * @return array |
||
| 27 | */ |
||
| 28 | public function provides() |
||
| 29 | { |
||
| 30 | return [ |
||
| 31 | Client::class, |
||
| 32 | ]; |
||
| 33 | } |
||
| 34 | |||
| 35 | /** |
||
| 36 | * Register the application services. |
||
| 37 | * |
||
| 38 | * @return void |
||
| 39 | */ |
||
| 40 | public function register() |
||
| 52 | } |
||
| 53 | } |
||
| 54 |