Spaces:
No application file
No application file
declare(strict_types=1); | |
namespace Mautic\LeadBundle\Provider; | |
use Mautic\LeadBundle\Exception\ChoicesNotFoundException; | |
interface FieldChoicesProviderInterface | |
{ | |
/** | |
* @return mixed[] | |
* | |
* @throws ChoicesNotFoundException | |
*/ | |
public function getChoicesForField(string $fieldType, string $fieldAlias, string $search = ''): array; | |
} | |