24 lines
698 B
PHP
24 lines
698 B
PHP
|
<?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);
|
||
|
}
|
||
|
}
|