| 1 | <?php | ||
| 18 | class ListValue extends AbstractValue | ||
| 19 | { | ||
| 20 | /** | ||
| 21 | * @var string | ||
| 22 | */ | ||
| 23 | private $delimiter; | ||
| 24 | |||
| 25 | /** | ||
| 26 | * @var AbstractValue[] | ||
| 27 | */ | ||
| 28 | private $items; | ||
| 29 | |||
| 30 | /** | ||
| 31 | * @inheritdoc | ||
| 32 | */ | ||
| 33 | 22 | public function getCompiled() | |
| 42 | |||
| 43 | /** | ||
| 44 | * @inheritdoc | ||
| 45 | */ | ||
| 46 | 22 | public function initializeFromOldFormat(array $value) | |
| 55 | } | ||
| 56 |