| 1 | <?php |
||
| 19 | class Serializer implements SerializerInterface |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * Encode data to JSON-object |
||
| 23 | * |
||
| 24 | * @param array $data |
||
| 25 | * |
||
| 26 | * @return string |
||
| 27 | */ |
||
| 28 | public static function encode(array $data) |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Decode JSON-string to array |
||
| 35 | * |
||
| 36 | * @param string $data |
||
| 37 | * |
||
| 38 | * @return array |
||
| 39 | */ |
||
| 40 | public static function decode($data) |
||
| 44 | } |
||
| 45 |