From: Raphaƫl Gertz Date: Mon, 24 Oct 2022 05:49:34 +0000 (+0200) Subject: Fix comment X-Git-Tag: 0.3.0~158 X-Git-Url: https://git.rapsys.eu/airbundle/commitdiff_plain/752e48619db81da242495044882a5f3da81b7878 Fix comment Cleanup --- diff --git a/Factory/RepositoryFactory.php b/Factory/RepositoryFactory.php index 21e672b..f64a4fb 100644 --- a/Factory/RepositoryFactory.php +++ b/Factory/RepositoryFactory.php @@ -26,14 +26,14 @@ final class RepositoryFactory implements RepositoryFactoryInterface { /** * The list of EntityRepository instances * - * @var ObjectRepository[] + * @var array */ private array $repositoryList = []; /** * The list of languages * - * @var string[] + * @var array */ private array $languages = []; @@ -94,7 +94,7 @@ final class RepositoryFactory implements RepositoryFactoryInterface { /** * {@inheritdoc} */ - public function getRepository(EntityManagerInterface $entityManager, $entityName): ObjectRepository { + public function getRepository(EntityManagerInterface $entityManager, mixed $entityName): ObjectRepository { //Set repository hash $repositoryHash = $entityManager->getClassMetadata($entityName)->getName() . spl_object_hash($entityManager); @@ -122,7 +122,7 @@ final class RepositoryFactory implements RepositoryFactoryInterface { $repositoryClass = $metadata->customRepositoryClassName ?: $entityManager->getConfiguration()->getDefaultRepositoryClassName(); //Return repository class instance - //XXX: router, slugger, translator and languages arguments will be ignored by default + //XXX: router, slugger, translator, languages and locale arguments will be ignored by default return new $repositoryClass($entityManager, $metadata, $this->router, $this->slugger, $this->translator, $this->languages, $this->locale); } }