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

Fix serialization for transport php serializer

This commit is contained in:
Alex Lushpai 2021-04-22 14:57:08 +03:00 committed by GitHub
commit 5520c4ca68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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()
];