Total Complexity | 4 |
Total Lines | 47 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
10 | class LoggerService |
||
11 | { |
||
12 | |||
13 | /** |
||
14 | * @var ContainerInterface |
||
15 | */ |
||
16 | protected $container; |
||
17 | /** |
||
18 | * @var ApplicationConfig |
||
19 | */ |
||
20 | protected $config; |
||
21 | protected $scope = []; |
||
22 | |||
23 | /** |
||
24 | * @param ApplicationConfig $config |
||
25 | * @param ContainerInterface $container |
||
26 | */ |
||
27 | public function __construct(ApplicationConfig $config, ContainerInterface $container) |
||
31 | } |
||
32 | |||
33 | /** |
||
34 | * @param string $name |
||
35 | * |
||
36 | * @return LoggerInterface |
||
37 | */ |
||
38 | public function get(string $name): LoggerInterface |
||
45 | } |
||
46 | |||
47 | /** |
||
48 | * @param string $name |
||
49 | * |
||
50 | * @return LoggerInterface |
||
51 | */ |
||
52 | protected function create(string $name): LoggerInterface |
||
59 |
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