1 | <?php |
||
6 | final class NegatedExpression extends Expression |
||
7 | { |
||
8 | /** |
||
9 | * NegatedExpression constructor. |
||
10 | * @param Expression $expression |
||
11 | */ |
||
12 | protected function __construct(Expression $expression) |
||
16 | |||
17 | /** |
||
18 | * @inheritDoc |
||
19 | */ |
||
20 | public function __toString(): string |
||
24 | |||
25 | /** |
||
26 | * @inheritDoc |
||
27 | */ |
||
28 | public function getValues(): array |
||
32 | } |
||
33 |