Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

PortfolioDetailRepository.php 470B

1234567891011121314151617181920
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Repository;
  4. use App\Entity\PortfolioDetail;
  5. use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
  6. use Doctrine\Persistence\ManagerRegistry;
  7. /**
  8. * @extends ServiceEntityRepository<PortfolioDetail>
  9. */
  10. class PortfolioDetailRepository extends ServiceEntityRepository
  11. {
  12. public function __construct(ManagerRegistry $registry)
  13. {
  14. parent::__construct($registry, PortfolioDetail::class);
  15. }
  16. }