| 12345678910111213141516171819202122232425262728293031323334 |
- <?php
- namespace Elasticsearch\Serializers;
- /**
- * Interface SerializerInterface
- *
- * @category Elasticsearch
- * @package Elasticsearch\Serializers
- * @author Zachary Tong <zach@elastic.co>
- * @license http://www.apache.org/licenses/LICENSE-2.0 Apache2
- * @link http://elastic.co
- */
- interface SerializerInterface
- {
- /**
- * Serialize a complex data-structure into a json encoded string
- *
- * @param mixed The data to encode
- *
- * @return string
- */
- public function serialize($data);
- /**
- * Deserialize json encoded string into an associative array
- *
- * @param string $data JSON encoded string
- * @param array $headers Response Headers
- *
- * @return array
- */
- public function deserialize($data, $headers);
- }
|