Files

18 lines
368 B
PHP
Executable File

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