Total Complexity | 1 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
16 | class FilterManager extends AbstractPluginManager implements FilterFactoryInterface |
||
17 | { |
||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | protected $instanceOf = FilterInterface::class; |
||
22 | |||
23 | /** |
||
24 | * @param QueryFilterManagerInterface $manager |
||
25 | * @param string $name |
||
26 | * @param array<mixed> $options |
||
27 | * |
||
28 | * @return FilterInterface |
||
29 | */ |
||
30 | public function create(QueryFilterManagerInterface $manager, string $name, array $options = []): FilterInterface |
||
38 |