| 1 | <?php |
||
| 5 | abstract class AbstractVariable |
||
| 6 | { |
||
| 7 | protected $unparsed; |
||
| 8 | protected $parsed = null; |
||
| 9 | |||
| 10 | public abstract function parse(): AbstractVariable; |
||
| 11 | |||
| 12 | 34 | public function __construct($unparsed) |
|
| 16 | |||
| 17 | /** |
||
| 18 | * @return mixed |
||
| 19 | */ |
||
| 20 | public function getUnparsed() |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @return mixed |
||
| 27 | */ |
||
| 28 | 33 | public function getParsed() |
|
| 36 | } |
||
| 37 |