1
0
mirror of synced 2024-11-21 20:36:08 +03:00

fix serialization for transport php serializer

This commit is contained in:
Akolzin Dmitry 2021-04-22 14:55:30 +03:00
parent d9dca7b78b
commit ac0a1ae95d

View File

@ -105,7 +105,7 @@ abstract class CommandMessage
public function __serialize(): array
{
return [
'command' => $this->getCommandName(),
'commandName' => $this->getCommandName(),
'arguments' => $this->getArguments(),
'options' => $this->getOptions()
];