1 | <?php |
||
17 | class Igbinary implements Serializer |
||
18 | { |
||
19 | |||
20 | /** |
||
21 | * {@inheritdoc} |
||
22 | * |
||
23 | * @param mixed $value |
||
24 | * @return string |
||
25 | */ |
||
26 | public function serialize($value) |
||
30 | |||
31 | /** |
||
32 | * {@inheritdoc} |
||
33 | * |
||
34 | * @param string $str |
||
35 | * @return mixed |
||
36 | */ |
||
37 | public function unserialize($str) |
||
41 | } |
||
42 |