* * @method ApiToken|null find($id, $lockMode = null, $lockVersion = null) * @method ApiToken|null findOneBy(array $criteria, array $orderBy = null) * @method ApiToken[] findAll() * @method ApiToken[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null) */ class ApiTokenRepository extends ServiceEntityRepository { public function __construct(ManagerRegistry $registry) { parent::__construct($registry, ApiToken::class); } // /** // * @return ApiToken[] Returns an array of ApiToken objects // */ // public function findByExampleField($value): array // { // return $this->createQueryBuilder('a') // ->andWhere('a.exampleField = :val') // ->setParameter('val', $value) // ->orderBy('a.id', 'ASC') // ->setMaxResults(10) // ->getQuery() // ->getResult() // ; // } // public function findOneBySomeField($value): ?ApiToken // { // return $this->createQueryBuilder('a') // ->andWhere('a.exampleField = :val') // ->setParameter('val', $value) // ->getQuery() // ->getOneOrNullResult() // ; // } }