Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | namespace Apie\CmsApiDropdownOption\DropdownOptionProvider; |
| 3 | |
| 4 | use Apie\CmsApiDropdownOption\Lists\DropdownOptionList; |
| 5 | use Apie\Core\Context\ApieContext; |
| 6 | |
| 7 | interface DropdownOptionProviderInterface |
| 8 | { |
| 9 | public function supports(ApieContext $apieContext): bool; |
| 10 | public function getList(ApieContext $apieContext, string $searchTerm): DropdownOptionList; |
| 11 | } |