Files
CloudOps/docker-compose/mautic-setup/mautic-backup-files/docroot/app/bundles/LeadBundle/Provider/FieldChoicesProviderInterface.php

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