| 1 | <?php |
||
| 8 | class SimpleBag extends \ArrayObject implements DataBagInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @inheritdoc |
||
| 12 | */ |
||
| 13 | 3 | public function jsonSerialize() |
|
| 17 | |||
| 18 | /** |
||
| 19 | * @inheritdoc |
||
| 20 | */ |
||
| 21 | 5 | public function toArray(): array |
|
| 25 | |||
| 26 | /** |
||
| 27 | * Return string representation of the bag. |
||
| 28 | * |
||
| 29 | * @return string |
||
| 30 | */ |
||
| 31 | public function __toString(): string |
||
| 35 | } |
||
| 36 |