| 1 | <?php | ||
| 10 | class Literal | ||
| 11 | { | ||
| 12 | protected $literalValue; | ||
| 13 | |||
| 14 | /** | ||
| 15 | * Literal constructor. | ||
| 16 | * | ||
| 17 | * @param $literalValue | ||
| 18 | */ | ||
| 19 | 6 | public function __construct($literalValue) | |
| 23 | |||
| 24 | /** | ||
| 25 | * @return mixed | ||
| 26 | */ | ||
| 27 | 6 | public function getLiteralValue() | |
| 31 | |||
| 32 | /** | ||
| 33 | * @param mixed $literalValue | ||
| 34 | */ | ||
| 35 | public function setLiteralValue($literalValue) | ||
| 39 | |||
| 40 | public function __toString() | ||
| 44 | } | ||
| 45 |