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