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.

repository.tpl.php 410B

3 lat temu
123456789101112131415
  1. <?= "<?php\n" ?>
  2. namespace <?= $namespace_path; ?>\<?= $domain; ?>;
  3. use App\Entity\<?= $domain; ?>\<?= $entity_class ?>;
  4. use Doctrine\Persistence\ManagerRegistry;
  5. use Lc\SovBundle\Repository\AbstractRepository;
  6. class <?= $class_name ?> extends AbstractRepository
  7. {
  8. public function __construct(ManagerRegistry $registry)
  9. {
  10. parent::__construct($registry, <?= $entity_class ?>::class);
  11. }
  12. }