-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSerializer.php
33 lines (27 loc) · 882 Bytes
/
Serializer.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
declare(strict_types=1);
namespace PetrKnap\Binary;
/**
* @see Coder\Zlib
* @see Serializer\Php
*/
final class Serializer extends Serializer\Serializer
{
protected readonly Coder\CoderInterface $coder;
protected readonly Serializer\SerializerInterface $serializer;
public function __construct(
Coder\CoderInterface|null $coder = null,
Serializer\SerializerInterface|null $serializer = null,
) {
$this->coder = $coder ?? new Coder\Zlib();
$this->serializer = $serializer ?? new Serializer\Php();
}
protected function doSerialize(mixed $serializable): string
{
return $this->coder->encode($this->serializer->serialize($serializable));
}
protected function doUnserialize(string $serialized): mixed
{
return $this->serializer->unserialize($this->coder->decode($serialized));
}
}