| 1 | <?php declare(strict_types=1); |
||
| 5 | class RuntimeConstant implements CodeGenerator |
||
| 6 | { |
||
| 7 | use VisibilityTrait; |
||
| 8 | |||
| 9 | private $name; |
||
| 10 | private $value; |
||
| 11 | |||
| 12 | 1 | public function __construct(string $name, $value) |
|
| 17 | |||
| 18 | 1 | public function getName(): string |
|
| 22 | |||
| 23 | public function getValue() |
||
| 27 | |||
| 28 | 1 | public function generateCode(): string |
|
| 32 | } |
||
| 33 |