19 lines
498 B
PHP
19 lines
498 B
PHP
<?php declare(strict_types = 1);
|
|
|
|
namespace App\Model\Database\Repository;
|
|
|
|
use App\Model\Database\Entity\Term;
|
|
|
|
/**
|
|
* @method Term|NULL find($id, ?int $lockMode = NULL, ?int $lockVersion = NULL)
|
|
* @method Term|NULL findOneBy(array $criteria, array $orderBy = NULL)
|
|
* @method Term[] findAll()
|
|
* @method Term[] findBy(array $criteria, array $orderBy = NULL, ?int $limit = NULL, ?int $offset = NULL)
|
|
* @extends AbstractRepository<Term>
|
|
*/
|
|
class TermRepository extends AbstractRepository
|
|
{
|
|
|
|
|
|
}
|