| Total Complexity | 6 |
| Total Lines | 46 |
| Duplicated Lines | 0 % |
| Coverage | 91.67% |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | trait BootManagerTrait |
||
| 22 | { |
||
| 23 | |||
| 24 | protected $providers = []; |
||
| 25 | protected $booted = false; |
||
| 26 | |||
| 27 | |||
| 28 | /** |
||
| 29 | * Redefine Registers a service provider. |
||
| 30 | * |
||
| 31 | * @param ServiceProviderInterface $provider A ServiceProviderInterface instance |
||
| 32 | * @param array $values An array of values that customizes the provider |
||
| 33 | * |
||
| 34 | * @return Application |
||
|
|
|||
| 35 | */ |
||
| 36 | 1 | public function register(ServiceProviderInterface $provider, array $values = []) |
|
| 43 | } |
||
| 44 | |||
| 45 | |||
| 46 | /** |
||
| 47 | * Boots all service providers. |
||
| 48 | * |
||
| 49 | * This method is automatically called by handle(), but you can use it |
||
| 50 | * to boot all service providers when not handling a request. |
||
| 51 | */ |
||
| 52 | 3 | public function boot() |
|
| 69 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths