mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-07-03 15:36:14 +00:00
21 lines
363 B
PHP
21 lines
363 B
PHP
<?php
|
|
|
|
namespace Chill\PersonBundle\Config;
|
|
|
|
interface ConfigPersonAltNamesHelperInterface
|
|
{
|
|
/**
|
|
* Return true if at least one alt name is configured
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function hasAltNames(): bool;
|
|
|
|
/**
|
|
* get the choices as key => values
|
|
*
|
|
* @return array
|
|
*/
|
|
public function getChoices(): array;
|
|
}
|