1 | <?php |
||
7 | class EncapsedStringPart extends Scalar |
||
8 | { |
||
9 | /** @var string String value */ |
||
10 | public $value; |
||
11 | |||
12 | /** |
||
13 | * Constructs a node representing a string part of an encapsed string. |
||
14 | * |
||
15 | * @param string $value String value |
||
16 | * @param array $attributes Additional attributes |
||
17 | */ |
||
18 | public function __construct($value, array $attributes = array()) { |
||
22 | |||
23 | public function getSubNodeNames() { |
||
26 | } |
||
27 |