adding Entities Location and LocationType (for activity/calendar) + doctrine migration

This commit is contained in:
2021-10-12 16:34:19 +02:00
parent 82ae300bd9
commit e570f5c28e
7 changed files with 502 additions and 3 deletions

View File

@@ -0,0 +1,21 @@
<?php
namespace Chill\MainBundle\Repository;
use Chill\MainBundle\Entity\Location;
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
use Doctrine\Persistence\ManagerRegistry;
/**
* @method Location|null find($id, $lockMode = null, $lockVersion = null)
* @method Location|null findOneBy(array $criteria, array $orderBy = null)
* @method Location[] findAll()
* @method Location[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
*/
class LocationRepository extends ServiceEntityRepository
{
public function __construct(ManagerRegistry $registry)
{
parent::__construct($registry, Location::class);
}
}