1 | <?php |
||
13 | class NullSerializer implements SerializerInterface |
||
14 | { |
||
15 | /** |
||
16 | * {@inheritdoc} |
||
17 | */ |
||
18 | 1 | public function serialize(CommandInterface $command) |
|
22 | |||
23 | /** |
||
24 | * {@inheritdoc} |
||
25 | * |
||
26 | * @throws InvalidArgumentException Thrown, when "serialized" data is not an instance of correct command class. |
||
27 | */ |
||
28 | 3 | public function unserialize($serializedCommandData, $commandClass) |
|
35 | |||
36 | } |
||
37 |