@@ -43,7 +43,7 @@ |
||
43 | 43 | public function call(string $method, $payload, int $flags = 0) |
44 | 44 | { |
45 | 45 | $this->relay->send( |
46 | - $method . pack("P", $this->seq), |
|
46 | + $method.pack("P", $this->seq), |
|
47 | 47 | Relay::PAYLOAD_CONTROL | Relay::PAYLOAD_RAW |
48 | 48 | ); |
49 | 49 |
@@ -4,7 +4,7 @@ |
||
4 | 4 | require "vendor/autoload.php"; |
5 | 5 | |
6 | 6 | $rpc = new Goridge\RPC( |
7 | - new Goridge\SocketRelay("127.0.0.1", 6001) |
|
7 | + new Goridge\SocketRelay("127.0.0.1", 6001) |
|
8 | 8 | ); |
9 | 9 | |
10 | 10 | echo $rpc->call("App.Hi", "Antony"); |