| 1 | <?php | ||
| 11 | class SerializerIgbinary implements iSerializer | ||
| 12 | { | ||
| 13 | |||
| 14 | /** | ||
| 15 | * @var bool | ||
| 16 | */ | ||
| 17 | public static $_exists_igbinary; | ||
| 18 | |||
| 19 | /** | ||
| 20 | * SerializerIgbinary constructor. | ||
| 21 | */ | ||
| 22 | 6 | public function __construct() | |
| 26 | |||
| 27 | /** | ||
| 28 | * serialize | ||
| 29 | * | ||
| 30 | * @param mixed $value | ||
| 31 | * | ||
| 32 | * @return string | ||
| 33 | */ | ||
| 34 | 3 | public function serialize($value) | |
| 44 | |||
| 45 | /** | ||
| 46 | * unserialize | ||
| 47 | * | ||
| 48 | * @param string $value | ||
| 49 | * | ||
| 50 | * @return mixed | ||
| 51 | */ | ||
| 52 | 4 | public function unserialize($value) | |
| 62 | |||
| 63 | } | ||
| 64 |