您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

repository.tpl.php 410B

3 年前
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. }