Completed
Push — master ( 0cba82...3ad6c5 )
by Nathan
02:04 queued 16s
created
src/Command/Util/ZValidateAddress.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
             'jsonrpc' => Command::JSON_RPC_VERSION,
21 21
             'id'      => Command::ID,
22 22
             'method'  => self::METHOD,
23
-            'params' => [$this->zAddress]
23
+            'params' => [ $this->zAddress ]
24 24
         ];
25 25
     }
26 26
 }
Please login to merge, or discard this patch.
src/Command/Util/ValidateAddress.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
             'jsonrpc' => Command::JSON_RPC_VERSION,
21 21
             'id'      => Command::ID,
22 22
             'method'  => self::METHOD,
23
-            'params' => [$this->address]
23
+            'params' => [ $this->address ]
24 24
         ];
25 25
     }
26 26
 }
Please login to merge, or discard this patch.
src/Native/Client.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
     public function execute(Command $command): ResponseInterface
27 27
     {
28 28
         return $this->httpClient->request('POST', $this->rpc->getAddress(), [
29
-            'auth' => [$this->rpc->getUser(), $this->rpc->getPassword()],
29
+            'auth' => [ $this->rpc->getUser(), $this->rpc->getPassword() ],
30 30
             'json' => $command
31 31
         ]);
32 32
     }
Please login to merge, or discard this patch.
src/Command/Control/Help.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
             'jsonrpc' => Command::JSON_RPC_VERSION,
21 21
             'id'      => Command::ID,
22 22
             'method'  => self::METHOD,
23
-            'params' => [$this->command]
23
+            'params' => [ $this->command ]
24 24
         ];
25 25
     }
26 26
 }
Please login to merge, or discard this patch.