Flumzi/src/Repository/ReleaseRepository.php

24 lines
698 B
PHP
Raw Normal View History

2023-10-01 12:46:02 +02:00
<?php
namespace App\Repository;
use App\Entity\Release;
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
use Doctrine\Persistence\ManagerRegistry;
/**
* @extends ServiceEntityRepository<Release>
*
* @method Release|null find($id, $lockMode = null, $lockVersion = null)
* @method Release|null findOneBy(array $criteria, array $orderBy = null)
* @method Release[] findAll()
* @method Release[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
*/
class ReleaseRepository extends ServiceEntityRepository
{
public function __construct(ManagerRegistry $registry)
{
parent::__construct($registry, Release::class);
}
}