1 | <?php |
||
2 | |||
3 | declare(strict_types=1); |
||
4 | |||
5 | namespace Sunrise\Hydrator\Tests\Fixture; |
||
6 | |||
7 | enum IntegerEnum: int |
||
8 | { |
||
9 | case FOO = 1697021457; |
||
10 | case BAR = 1697021458; |
||
11 | case BAZ = 1697021459; |
||
12 | |||
13 | /** |
||
14 | * @return list<int> |
||
0 ignored issues
–
show
|
|||
15 | */ |
||
16 | public static function values(): array |
||
17 | { |
||
18 | $values = []; |
||
19 | foreach (self::cases() as $case) { |
||
20 | $values[] = $case->value; |
||
21 | } |
||
22 | |||
23 | return $values; |
||
0 ignored issues
–
show
|
|||
24 | } |
||
25 | } |
||
26 |
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