| 1 | <?php |
||
| 15 | class ListValue extends AbstractValue |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * ConstantValue constructor. |
||
| 19 | * @param array|ValueInterface[] $values |
||
| 20 | * @param int $offset |
||
| 21 | */ |
||
| 22 | public function __construct(array $values, int $offset = 0) |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @return string |
||
| 29 | */ |
||
| 30 | public function toString(): string |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @return array|ValueInterface[]|AbstractValue[] |
||
| 43 | */ |
||
| 44 | public function getValue(): array |
||
| 48 | } |
||
| 49 |