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