| Conditions | 4 |
| Paths | 8 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | public static function __callStatic($name, $arguments) |
||
| 14 | { |
||
| 15 | $file = isset($arguments[0]) ? $arguments[0] : self::getFilePath(); |
||
| 16 | |||
| 17 | $line = isset($arguments[1]) ? $arguments[1] : self::getRandomLine($file); |
||
| 18 | |||
| 19 | $parameter = isset($arguments[2]) ? $arguments[2] : null; |
||
| 20 | |||
| 21 | call_user_func_array([new Errors, $name], [$file, $line, $parameter]); |
||
| 22 | } |
||
| 51 |
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