Ви не можете вибрати більше 25 тем
Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
|
- <?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);
- }
- }
|