Total Complexity | 1 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | final class SymbolType |
||
9 | { |
||
10 | public const CLASS_TYPE = 'class'; |
||
11 | public const FUNCTION_TYPE = 'function'; |
||
12 | public const CONSTANT_TYPE = 'constant'; |
||
13 | public const ANY_TYPE = 'any'; |
||
14 | |||
15 | public const ALL = [ |
||
16 | self::CLASS_TYPE, |
||
17 | self::FUNCTION_TYPE, |
||
18 | self::CONSTANT_TYPE, |
||
19 | self::ANY_TYPE, |
||
20 | ]; |
||
21 | |||
22 | /** |
||
23 | * @return list<self::*_TYPE> |
||
|
|||
24 | */ |
||
25 | public static function getAllSpecificTypes(): array |
||
34 |
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