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

@@ -32,9 +32,9 @@ final class SocialActionRepository implements ObjectRepository
return $this->repository->createQueryBuilder($alias, $indexBy);
}
public function find($id, ?int $lockMode = null, ?int $lockVersion = null): ?SocialAction
public function find($id): ?SocialAction
{
return $this->repository->find($id, $lockMode, $lockVersion);
return $this->repository->find($id);
}
/**