mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-21 07:03:49 +00:00
fix folder name
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
/*
|
||||
*
|
||||
*/
|
||||
namespace Chill\MainBundle\Center;
|
||||
|
||||
/**
|
||||
* Interface to declare a groups of centers.
|
||||
*
|
||||
* This interface is used to declare a groups of centers in
|
||||
* `Chill\MainBundle\Form\Export\PickCenterType`.
|
||||
*
|
||||
*/
|
||||
interface GroupingCenterInterface
|
||||
{
|
||||
/**
|
||||
* @return string[]
|
||||
*/
|
||||
public function getGroups($authorizedCenters = null): array;
|
||||
|
||||
/**
|
||||
*
|
||||
* @param string $group
|
||||
* @return \Chill\MainBundle\Entity\Center[]
|
||||
*/
|
||||
public function getCentersForGroup($group);
|
||||
}
|
Reference in New Issue
Block a user