1 | <?php |
||
2 | declare(strict_types = 1); |
||
3 | |||
4 | namespace Innmind\Immutable; |
||
5 | |||
6 | /** |
||
7 | * @psalm-immutable |
||
8 | * @template T |
||
9 | */ |
||
10 | interface Monoid |
||
11 | { |
||
12 | /** |
||
13 | * @return T |
||
0 ignored issues
–
show
|
|||
14 | */ |
||
15 | public function identity(): mixed; |
||
16 | |||
17 | /** |
||
18 | * @param T $a |
||
19 | * @param T $b |
||
20 | * |
||
21 | * @return T |
||
22 | */ |
||
23 | public function combine(mixed $a, mixed $b): mixed; |
||
24 | } |
||
25 |
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