Total Complexity | 4 |
Total Lines | 50 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
23 | class AuditingServiceProvider extends ServiceProvider |
||
24 | { |
||
25 | /** |
||
26 | * {@inheritdoc} |
||
27 | */ |
||
28 | protected $defer = true; |
||
29 | |||
30 | /** |
||
31 | * Bootstrap the service provider. |
||
32 | * |
||
33 | * @return void |
||
34 | */ |
||
35 | 273 | public function boot() |
|
46 | 273 | } |
|
47 | |||
48 | /** |
||
49 | * Register the service provider. |
||
50 | * |
||
51 | * @return void |
||
52 | */ |
||
53 | 273 | public function register() |
|
63 | 273 | }); |
|
64 | 273 | } |
|
65 | |||
66 | /** |
||
67 | * {@inheritdoc} |
||
68 | */ |
||
69 | 3 | public function provides() |
|
76 |