Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- <?php
-
- namespace Lc\PietroBundle\Repository\Subthematic;
-
- use App\Entity\Subthematic;
- use Lc\SovBundle\Repository\AbstractRepository;
- use Doctrine\Persistence\ManagerRegistry;
-
- class SubthematicRepository extends AbstractRepository
- {
- public function __construct(ManagerRegistry $registry)
- {
- parent::__construct($registry, Subthematic::class);
- }
- }
|