Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- <?php
-
- namespace Lc\PietroBundle\Repository\Subthematic;
-
- use Lc\PietroBundle\Model\Subthematic;
- use Lc\SovBundle\Repository\AbstractRepository;
- use Doctrine\Persistence\ManagerRegistry;
-
- class SubthematicRepository extends AbstractRepository
- {
- public function __construct(ManagerRegistry $registry)
- {
- parent::__construct($registry, Subthematic::class);
- }
- }
|