| 1 | <?php |
||
| 10 | class NotOperand extends AbstractOperand |
||
| 11 | { |
||
| 12 | /** @var OperandInterface */ |
||
| 13 | private $containedOperand; |
||
| 14 | |||
| 15 | /** @return bool */ |
||
| 16 | 2 | public function execute() |
|
| 20 | |||
| 21 | /** |
||
| 22 | * @param OperandStack $operandStack |
||
| 23 | * @return $this |
||
| 24 | */ |
||
| 25 | 7 | public function consumeTokens(OperandStack $operandStack) |
|
| 30 | |||
| 31 | 5 | public function __toString() |
|
| 35 | } |
||
| 36 |