Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- <?php
-
- namespace Lc\CaracoleBundle\Repository\Section;
-
- use App\Entity\Section\Section;
- use Doctrine\Persistence\ManagerRegistry;
- use Lc\SovBundle\Repository\AbstractRepository;
-
- class SectionRepository extends AbstractRepository
- {
- public function __construct(ManagerRegistry $registry)
- {
- parent::__construct($registry, Section::class);
- }
- }
|