1 | <?php |
||
11 | class StringASTNode extends LiteralASTNode { |
||
12 | const NAME = 'string'; |
||
13 | |||
14 | /** |
||
15 | * @var string |
||
16 | */ |
||
17 | private $value; |
||
18 | |||
19 | /** |
||
20 | * StringASTNode constructor. |
||
21 | * |
||
22 | * @param string $value |
||
23 | */ |
||
24 | 18 | public function __construct($value) { |
|
27 | |||
28 | /** |
||
29 | * @return string |
||
30 | */ |
||
31 | 8 | public function getName() { |
|
34 | |||
35 | /** |
||
36 | * @return string |
||
37 | */ |
||
38 | 13 | public function getValue() { |
|
41 | } |