| 1 | <?php |
||
| 25 | abstract class AbstractFilter implements FilterInterface |
||
| 26 | { |
||
| 27 | use RelationAwareTrait; |
||
| 28 | use RequestFieldAwareTrait; |
||
| 29 | use DocumentFieldAwareTrait; |
||
| 30 | use OptionsAwareTrait; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @var array |
||
| 34 | */ |
||
| 35 | private $tags = []; |
||
| 36 | |||
| 37 | /** |
||
| 38 | * {@inheritdoc} |
||
| 39 | */ |
||
| 40 | public function getState(Request $request) |
||
| 54 | |||
| 55 | |||
| 56 | /** |
||
| 57 | * @return string |
||
| 58 | */ |
||
| 59 | public function getTags() |
||
| 63 | |||
| 64 | /** |
||
| 65 | * @param string $tags |
||
| 66 | */ |
||
| 67 | public function setTags($tags) |
||
| 71 | |||
| 72 | /** |
||
| 73 | * {@inheritdoc} |
||
| 74 | */ |
||
| 75 | public function isRelated() |
||
| 79 | } |
||
| 80 |
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..