1 | <?php |
||
27 | abstract class AbstractFilter implements FilterInterface |
||
28 | { |
||
29 | use RelationAwareTrait; |
||
30 | use RequestFieldAwareTrait; |
||
31 | use DocumentFieldAwareTrait; |
||
|
|||
32 | use OptionsAwareTrait; |
||
33 | |||
34 | /** |
||
35 | * @var array |
||
36 | */ |
||
37 | private $tags = []; |
||
38 | |||
39 | /** |
||
40 | * {@inheritdoc} |
||
41 | */ |
||
42 | public function getState(Request $request) |
||
56 | |||
57 | |||
58 | /** |
||
59 | * @return string |
||
60 | */ |
||
61 | public function getTags() |
||
65 | |||
66 | /** |
||
67 | * @param string $tags |
||
68 | */ |
||
69 | public function setTags($tags) |
||
73 | |||
74 | /** |
||
75 | * {@inheritdoc} |
||
76 | */ |
||
77 | public function isRelated() |
||
81 | } |
||
82 |
This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.