| Total Complexity | 3 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | final class PositionalEntry implements Entry |
||
| 11 | { |
||
| 12 | /** @var ValuableNode */ |
||
| 13 | private $value; |
||
| 14 | |||
| 15 | public function __construct(ValuableNode $value) |
||
| 16 | { |
||
| 17 | $this->value = $value; |
||
| 18 | } |
||
| 19 | |||
| 20 | public function getValue() : ValuableNode |
||
| 23 | } |
||
| 24 | |||
| 25 | public function dispatch(Visitor $visitor) : void |
||
| 30 |