chill-bundles/src/Bundle/ChillMainBundle/Repository/GeographicalUnitLayerRepositoryInterface.php

14 lines
331 B
PHP

<?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;
}