X-Git-Url: https://git.rapsys.eu/treebundle/blobdiff_plain/548f6537e841234c117c695da66ce39122d6015c..70edf31fc8c7162f074d6a519de743e2c3995f03:/Repository/UserRepository.php?ds=inline diff --git a/Repository/UserRepository.php b/Repository/UserRepository.php index b2cfbd6..1082078 100644 --- a/Repository/UserRepository.php +++ b/Repository/UserRepository.php @@ -17,4 +17,12 @@ use Rapsys\UserBundle\Repository\UserRepository as BaseUserRepository; * UserRepository */ class UserRepository extends BaseUserRepository { + /** + * {@inheritdoc} + * @param array $languages The languages list + */ + public function __construct(protected EntityManagerInterface $manager, protected ClassMetadata $class, protected ContainerInterface $container, protected RouterInterface $router, protected SluggerUtil $slugger, protected TranslatorInterface $translator, protected string $locale, protected array $languages) { + //Call parent constructor + parent::__construct($manager, $class, $container, $router, $slugger, $translator, $locale); + } }