Feature: aggregator for accompanying course by geographical level

This commit is contained in:
2022-10-03 18:20:13 +02:00
parent 65f6712a15
commit 52435f5331
6 changed files with 228 additions and 23 deletions

View File

@@ -0,0 +1,14 @@
<?php
namespace Chill\MainBundle\Repository;
use Chill\MainBundle\Entity\GeographicalUnitLayer;
use Doctrine\Persistence\ObjectRepository;
interface GeographicalUnitLayerRepositoryInterface extends ObjectRepository
{
/**
* @return array|GeographicalUnitLayer[]
*/
public function findAllHavingUnits(): array;
}