1 | <?php |
||
11 | class FilterConditionFactory |
||
12 | { |
||
13 | /** |
||
14 | * @var EventDispatcherInterface |
||
15 | */ |
||
16 | protected $eventDispatcher; |
||
17 | |||
18 | public function __construct() |
||
22 | |||
23 | /** |
||
24 | * @param EventSubscriberInterface $eventSubscriber |
||
25 | */ |
||
26 | public function registerEventSubscriber(EventSubscriberInterface $eventSubscriber) |
||
30 | |||
31 | /** |
||
32 | * @param mixed $value |
||
33 | * @param string $method |
||
34 | * @param Field $field |
||
35 | * |
||
36 | * @return FilterCondition |
||
37 | */ |
||
38 | public function create(Field $field, $method, $value) |
||
49 | } |
||
50 |