| 1 | <?php |
||
| 14 | abstract class AbstractCondition implements ConditionInterface |
||
| 15 | { |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Decorator |
||
| 19 | * @var AbstractDecorator |
||
| 20 | */ |
||
| 21 | protected $decorator; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Get decorator |
||
| 25 | * @return AbstractDecorator |
||
| 26 | */ |
||
| 27 | public function getDecorator() |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Set decorator |
||
| 34 | * |
||
| 35 | * @param DataAccessInterface $decorator |
||
| 36 | * @return $this |
||
| 37 | */ |
||
| 38 | public function setDecorator($decorator) |
||
| 43 | |||
| 44 | /** |
||
| 45 | * |
||
| 46 | * @return type |
||
| 47 | */ |
||
| 48 | public function getActulRow() |
||
| 52 | } |
||
| 53 |
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..