mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
20 lines
410 B
PHP
20 lines
410 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Chill\MainBundle\Security\Resolver;
|
|
|
|
use Chill\MainBundle\Entity\Center;
|
|
|
|
/**
|
|
* @deprecated Use CenterResolverManager and its interface CenterResolverManagerInterface
|
|
*/
|
|
interface CenterResolverDispatcherInterface
|
|
{
|
|
/**
|
|
* @param object $entity
|
|
* @return null|Center|Center[]
|
|
*/
|
|
public function resolveCenter($entity, ?array $options = []);
|
|
}
|