Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php namespace Comodojo\Zip\Traits; |
||
39 | public function setMask(int $mask): ZipInterface { |
||
40 | |||
41 | $mask = filter_var($mask, FILTER_VALIDATE_INT, [ |
||
42 | "options" => [ |
||
43 | "max_range" => 0777, |
||
44 | "default" => 0777 |
||
45 | ], |
||
46 | 'flags' => FILTER_FLAG_ALLOW_OCTAL |
||
47 | ]); |
||
48 | $this->mask = $mask; |
||
49 | |||
50 | return $this; |
||
51 | |||
66 |
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