Neue Tabellen
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
dotworker
2023-01-10 10:36:02 +01:00
parent 2be165a8c1
commit f7b2a93197
4 changed files with 313 additions and 4 deletions

View File

@@ -0,0 +1,66 @@
<?php
namespace App\Repository;
use App\Entity\HlsCountry;
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
use Doctrine\Persistence\ManagerRegistry;
/**
* @extends ServiceEntityRepository<HlsCountry>
*
* @method HlsCountry|null find($id, $lockMode = null, $lockVersion = null)
* @method HlsCountry|null findOneBy(array $criteria, array $orderBy = null)
* @method HlsCountry[] findAll()
* @method HlsCountry[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
*/
class HlsCountryRepository extends ServiceEntityRepository
{
public function __construct(ManagerRegistry $registry)
{
parent::__construct($registry, HlsCountry::class);
}
public function save(HlsCountry $entity, bool $flush = false): void
{
$this->getEntityManager()->persist($entity);
if ($flush) {
$this->getEntityManager()->flush();
}
}
public function remove(HlsCountry $entity, bool $flush = false): void
{
$this->getEntityManager()->remove($entity);
if ($flush) {
$this->getEntityManager()->flush();
}
}
// /**
// * @return HlsCountry[] Returns an array of HlsCountry objects
// */
// public function findByExampleField($value): array
// {
// return $this->createQueryBuilder('h')
// ->andWhere('h.exampleField = :val')
// ->setParameter('val', $value)
// ->orderBy('h.id', 'ASC')
// ->setMaxResults(10)
// ->getQuery()
// ->getResult()
// ;
// }
// public function findOneBySomeField($value): ?HlsCountry
// {
// return $this->createQueryBuilder('h')
// ->andWhere('h.exampleField = :val')
// ->setParameter('val', $value)
// ->getQuery()
// ->getOneOrNullResult()
// ;
// }
}