Issues (13)

src/BaseValueObject/ValueObjectInterface.php (2 issues)

Labels
Severity
1
<?php
2
3
declare(strict_types=1);
4
5
namespace MinimalVo\BaseValueObject;
6
7
/**
8
 * @template TValue
9
 * @template TVo
10
 */
11
interface ValueObjectInterface
12
{
13
    /** @param TVo $vo */
0 ignored issues
show
The type MinimalVo\BaseValueObject\TVo was not found. Maybe you did not declare it correctly or list all dependencies?

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:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
14
    public function equal($vo): bool;
15
16
    /**
17
     * @return TVo
18
     */
19
    public function duplicate();
20
21
    /** @return TValue */
0 ignored issues
show
The type MinimalVo\BaseValueObject\TValue was not found. Maybe you did not declare it correctly or list all dependencies?

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:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
22
    public function toValue();
23
}
24