ninenote/src/ninenote-1.0/src/Repository/YearRepository.php

51 lines
1.3 KiB
PHP

<?php
namespace App\Repository;
use App\Entity\Year;
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
use Doctrine\Persistence\ManagerRegistry;
/**
* @method Year|null find($id, $lockMode = null, $lockVersion = null)
* @method Year|null findOneBy(array $criteria, array $orderBy = null)
* @method Year[] findAll()
* @method Year[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
*/
class YearRepository extends ServiceEntityRepository
{
public function __construct(ManagerRegistry $registry)
{
parent::__construct($registry, Year::class);
}
// /**
// * @return Year[] Returns an array of Year objects
// */
/*
public function findByExampleField($value)
{
return $this->createQueryBuilder('y')
->andWhere('y.exampleField = :val')
->setParameter('val', $value)
->orderBy('y.id', 'ASC')
->setMaxResults(10)
->getQuery()
->getResult()
;
}
*/
/*
public function findOneBySomeField($value): ?Year
{
return $this->createQueryBuilder('y')
->andWhere('y.exampleField = :val')
->setParameter('val', $value)
->getQuery()
->getOneOrNullResult()
;
}
*/
}