| 1 | <?php |
||
| 18 | class Output implements OutputInterface |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @var mixed |
||
| 22 | */ |
||
| 23 | private $value; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @var mixed |
||
| 27 | */ |
||
| 28 | private $parent; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Output constructor. |
||
| 32 | * @param $value |
||
| 33 | * @param $parent |
||
| 34 | */ |
||
| 35 | public function __construct($value, $parent) |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @return mixed |
||
| 43 | */ |
||
| 44 | public function getValue() |
||
| 48 | |||
| 49 | /** |
||
| 50 | * @return mixed |
||
| 51 | */ |
||
| 52 | public function getParentValue() |
||
| 56 | } |
||
| 57 |