vendor/roothirsch/core-bundle/Translation/Repository/LanguageRepository.php line 15

Open in your IDE?
  1. <?php
  2. namespace Roothirsch\CoreBundle\Translation\Repository;
  3. use Roothirsch\CoreBundle\Translation\Entity\Language;
  4. use Roothirsch\CoreBundle\Translation\Entity\TranslationScope;
  5. use Roothirsch\CoreBundle\Translation\Entity\TranslationUnit;
  6. use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
  7. use Doctrine\ORM\EntityManager;
  8. use Doctrine\ORM\EntityRepository;
  9. use Doctrine\ORM\Mapping\ClassMetadata;
  10. use Doctrine\Persistence\ManagerRegistry;
  11. class LanguageRepository extends ServiceEntityRepository
  12. {
  13.     public function __construct(ManagerRegistry $registry)
  14.     {
  15.         parent::__construct($registryLanguage::class);
  16.     }
  17. }