1 | <?php |
||
10 | class SerializerIgbinary implements iSerializer |
||
11 | { |
||
12 | |||
13 | /** |
||
14 | * @var bool |
||
15 | */ |
||
16 | public static $_exists_igbinary; |
||
17 | |||
18 | /** |
||
19 | * SerializerIgbinary constructor. |
||
20 | */ |
||
21 | 33 | public function __construct() |
|
29 | |||
30 | /** |
||
31 | * @inheritdoc |
||
32 | */ |
||
33 | 18 | public function serialize($value) |
|
43 | |||
44 | /** |
||
45 | * @inheritdoc |
||
46 | */ |
||
47 | 17 | public function unserialize($value) |
|
57 | |||
58 | } |
||
59 |