@@ -41,21 +41,18 @@ public function __construct(
41
41
$ this ->repository = $ this ->resolveRepository ();
42
42
}
43
43
44
- /** @psalm-suppress MethodSignatureMismatch This proxy is used only in combination with newer parent class */
45
44
public function createQueryBuilder (string $ alias , ?string $ indexBy = null ): QueryBuilder
46
45
{
47
46
return ($ this ->repository ??= $ this ->resolveRepository ())
48
47
->createQueryBuilder ($ alias , $ indexBy );
49
48
}
50
49
51
- /** @psalm-suppress MethodSignatureMismatch This proxy is used only in combination with newer parent class */
52
50
public function createResultSetMappingBuilder (string $ alias ): ResultSetMappingBuilder
53
51
{
54
52
return ($ this ->repository ??= $ this ->resolveRepository ())
55
53
->createResultSetMappingBuilder ($ alias );
56
54
}
57
55
58
- /** @psalm-suppress MethodSignatureMismatch This proxy is used only in combination with newer parent class */
59
56
public function find (mixed $ id , LockMode |int |null $ lockMode = null , int |null $ lockVersion = null ): object |null
60
57
{
61
58
/** @psalm-suppress InvalidReturnStatement This proxy is used only in combination with newer parent class */
@@ -67,7 +64,6 @@ public function find(mixed $id, LockMode|int|null $lockMode = null, int|null $lo
67
64
* {@inheritDoc}
68
65
*
69
66
* @psalm-suppress InvalidReturnStatement This proxy is used only in combination with newer parent class
70
- * @psalm-suppress MethodSignatureMismatch This proxy is used only in combination with newer parent class
71
67
* @psalm-suppress InvalidReturnType This proxy is used only in combination with newer parent class
72
68
*/
73
69
public function findBy (array $ criteria , ?array $ orderBy = null , ?int $ limit = null , ?int $ offset = null ): array
@@ -92,8 +88,6 @@ public function count(array $criteria = []): int
92
88
93
89
/**
94
90
* {@inheritDoc}
95
- *
96
- * @psalm-suppress MethodSignatureMismatch This proxy is used only in combination with newer parent class
97
91
*/
98
92
public function __call (string $ method , array $ arguments ): mixed
99
93
{
0 commit comments