You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?= "<?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);
- }
- }
|