Conditions | 3 |
Paths | 3 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | public static function getBigIntegerClass() |
||
20 | { |
||
21 | if (self::$bigIntegerClass === '') { |
||
22 | self::$bigIntegerClass = 'phpseclib3\Math\BigInteger'; |
||
23 | if (!class_exists(self::$bigIntegerClass)) { |
||
24 | self::$bigIntegerClass = 'phpseclib\Math\BigInteger'; |
||
25 | } |
||
26 | } |
||
27 | return self::$bigIntegerClass; |
||
28 | } |
||
43 |
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