1 | <?php declare(strict_types=1); |
||
5 | class RuntimeProperty implements CodeGenerator |
||
6 | { |
||
7 | use VisibilityTrait; |
||
8 | use DefaultValueTrait; |
||
9 | use StaticTrait; |
||
10 | |||
11 | private $name; |
||
12 | |||
13 | 3 | public function __construct(string $name) |
|
17 | |||
18 | 2 | public function getName(): string |
|
22 | |||
23 | 2 | public function generateCode(): string |
|
39 | } |
||
40 |