mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-14 06:14:23 +00:00
14 lines
331 B
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;
|
|
} |