| Total Complexity | 3 | 
| Total Lines | 53 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 9 | class CartServiceProvider extends ServiceProvider | ||
| 10 | { | ||
| 11 | |||
| 12 | /** | ||
| 13 | * Indicates if loading of the provider is deferred. | ||
| 14 | * | ||
| 15 | * @var bool | ||
| 16 | */ | ||
| 17 | protected $defer = false; | ||
| 18 | |||
| 19 | |||
| 20 | /** | ||
| 21 | * Bootstrap the application services. | ||
| 22 | * | ||
| 23 | * @return void | ||
| 24 | */ | ||
| 25 | public function boot() | ||
| 26 |     { | ||
| 27 | // | ||
| 28 | } | ||
| 29 | |||
| 30 | /** | ||
| 31 | * Register the application services. | ||
| 32 | * | ||
| 33 | * @return void | ||
| 34 | */ | ||
| 35 | public function register() | ||
| 50 | ); | ||
| 51 | }); | ||
| 52 | } | ||
| 53 | |||
| 54 | /** | ||
| 55 | * Get the services provided by the provider. | ||
| 56 | * | ||
| 57 | * @return array | ||
| 58 | */ | ||
| 59 | public function provides() | ||
| 62 | } | ||
| 63 | } |