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\n" ?>
-
- namespace <?= $namespace_path; ?>\<?= $domain; ?>;
-
- use App\Entity\<?= $domain; ?>\<?= $entity_class ?>;
- use Doctrine\Persistence\ManagerRegistry;
- use Lc\SovBundle\Repository\AbstractRepository;
-
- class <?= $class_name ?> extends AbstractRepository
- {
- public function __construct(ManagerRegistry $registry)
- {
- parent::__construct($registry, <?= $entity_class ?>::class);
- }
- }
|