| 1 | <?php |
||
| 15 | abstract class EqualityOperator implements OperatorInterface |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var mixed |
||
| 19 | */ |
||
| 20 | protected $value; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param mixed $value |
||
| 24 | */ |
||
| 25 | 79 | public function __construct($value) |
|
| 29 | |||
| 30 | /** |
||
| 31 | * @return mixed The value compared to |
||
| 32 | */ |
||
| 33 | 11 | public function getValue() |
|
| 37 | } |
||
| 38 |