mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-22 15:43:51 +00:00
18 lines
391 B
PHP
18 lines
391 B
PHP
<?php
|
|
|
|
namespace Chill\MainBundle\Repository;
|
|
|
|
use Chill\MainBundle\Entity\Center;
|
|
use Doctrine\Persistence\ObjectRepository;
|
|
|
|
interface CenterRepositoryInterface extends ObjectRepository
|
|
{
|
|
/**
|
|
* Return all active centers
|
|
*
|
|
* Note: this is a teaser: active will comes later on center entity
|
|
*
|
|
* @return Center[]
|
|
*/
|
|
public function findActive(): array;
|
|
} |