Issues (590)

src/Relations/Info/RelationInfoInterface.php (1 issue)

Labels
Severity
1
<?php
2
3
namespace Bdf\Prime\Relations\Info;
4
5
/**
6
 * Interface RelationInfoInterface
7
 *
8
 * @template E as object
9
 */
10
interface RelationInfoInterface
11
{
12
    /**
13
     * @param E $entity
0 ignored issues
show
The type Bdf\Prime\Relations\Info\E 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
     * @return bool
15
     */
16
    public function isLoaded($entity): bool;
17
18
    /**
19
     * @param E $entity
20
     * @return void
21
     * @deprecated Will be removed in 3.0
22
     */
23
    public function clear($entity): void;
24
25
    /**
26
     * @param E $entity
27
     * @return void
28
     */
29
    public function markAsLoaded($entity): void;
30
}
31