| Total Complexity | 1 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 25 | class Literal { |
||
| 26 | /** |
||
| 27 | * @var string|boolean|\DateTime|integer |
||
| 28 | * |
||
| 29 | * The value of the literal |
||
| 30 | */ |
||
| 31 | public $value; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Literal constructor. |
||
| 35 | * |
||
| 36 | * @param bool|\DateTime|int|string $value |
||
| 37 | */ |
||
| 38 | public function __construct($value = '') { |
||
| 42 |