DX: fix phpstan errors

This commit is contained in:
2023-02-04 01:53:40 +01:00
parent 584ac05b53
commit 264a6ef43e
12 changed files with 25 additions and 25 deletions

View File

@@ -48,9 +48,9 @@ final class ResultRepository implements ObjectRepository
->getSingleScalarResult();
}
public function find($id, ?int $lockMode = null, ?int $lockVersion = null): ?Result
public function find($id): ?Result
{
return $this->repository->find($id, $lockMode, $lockVersion);
return $this->repository->find($id);
}
/**