mautic / app /bundles /LeadBundle /Provider /FieldChoicesProviderInterface.php
chrisbryan17's picture
Upload folder using huggingface_hub
d2897cd verified
<?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;
}