| Total Complexity | 2 |
| Total Lines | 51 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class PimpleServiceProvider implements ServiceProviderInterface |
||
| 9 | { |
||
| 10 | |||
| 11 | /** |
||
| 12 | * @var array |
||
| 13 | */ |
||
| 14 | public $config = [ |
||
| 15 | 'pdo' => null, |
||
| 16 | 'worlds_table' => null |
||
| 17 | ]; |
||
| 18 | |||
| 19 | |||
| 20 | /** |
||
| 21 | * @param array|null $config Service Configuration |
||
| 22 | */ |
||
| 23 | public function __construct( array $config = array() ) |
||
| 24 | { |
||
| 25 | $this->config = array_merge($this->config, $config ); |
||
| 26 | } |
||
| 27 | |||
| 28 | |||
| 29 | /** |
||
| 30 | * @implements ServiceProviderInterface |
||
| 31 | */ |
||
| 32 | public function register(Container $dic) |
||
| 59 | }; |
||
| 60 | |||
| 65 |
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