| 1 | <?php |
||
| 15 | class Json extends Format implements Arrayable, VOArrayable |
||
| 16 | {
|
||
| 17 | /** |
||
| 18 | * @return array |
||
| 19 | */ |
||
| 20 | 2 | public function toArray() |
|
| 24 | |||
| 25 | /** |
||
| 26 | * @param array $array |
||
| 27 | * @return static |
||
| 28 | */ |
||
| 29 | 2 | public static function fromArray(array $array) |
|
| 33 | |||
| 34 | /** |
||
| 35 | * @param VOArray $voArray |
||
| 36 | * @return Json |
||
| 37 | */ |
||
| 38 | 1 | public static function fromVOArray(VOArray $voArray) |
|
| 42 | |||
| 43 | /** |
||
| 44 | * @return VOArray |
||
| 45 | */ |
||
| 46 | 1 | public function toVOArray() |
|
| 50 | } |
||
| 51 |