| Total Complexity | 3 | 
| Total Lines | 35 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 19 | final class CushonHealthBundle extends Bundle  | 
            ||
| 20 | { | 
            ||
| 21 | use BundleRootKeyTrait;  | 
            ||
| 22 | |||
| 23 | public const BUNDLE_PATH = __DIR__;  | 
            ||
| 24 | public const CONFIG_PATH = self::BUNDLE_PATH . '/Resources/config';  | 
            ||
| 25 | |||
| 26 | public const BUNDLE_ROOT_KEY = 'cushon_health';  | 
            ||
| 27 | |||
| 28 | public const BUNDLE_PATH_KEY = 'bundle_path';  | 
            ||
| 29 | |||
| 30 | /**  | 
            ||
| 31 | * @param string $rootKey  | 
            ||
| 32 | */  | 
            ||
| 33 | public function __construct(string $rootKey = self::BUNDLE_ROOT_KEY)  | 
            ||
| 34 |     { | 
            ||
| 35 | $this->rootKey = $rootKey;  | 
            ||
| 36 | }  | 
            ||
| 37 | |||
| 38 | /**  | 
            ||
| 39 | * @inheritDoc  | 
            ||
| 40 | */  | 
            ||
| 41 | public function build(ContainerBuilder $container): void  | 
            ||
| 44 | }  | 
            ||
| 45 | |||
| 46 | /**  | 
            ||
| 47 | * @inheritDoc  | 
            ||
| 48 | */  | 
            ||
| 49 | public function getContainerExtension(): ?ExtensionInterface  | 
            ||
| 54 | );  | 
            ||
| 55 | }  | 
            ||
| 57 | 
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