chill-bundles/src/Bundle/ChillPersonBundle/src/Config/ConfigPersonAltNamesHelperInterface.php
2021-05-06 21:37:54 +02:00

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;
}