Completed
Push — master ( ca18e6...2177f0 )
by Nathan
05:55 queued 03:48
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/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.
src/Command/Generating/SetGenerate.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
             'jsonrpc' => Command::JSON_RPC_VERSION,
23 23
             'id'      => Command::ID,
24 24
             'method'  => self::METHOD,
25
-            'params' => array_merge([$this->generate], !is_null($this->limit) ? [$this->limit] : [])
25
+            'params' => array_merge([ $this->generate ], !is_null($this->limit) ? [ $this->limit ] : [ ])
26 26
         ];
27 27
     }
28 28
 }
Please login to merge, or discard this patch.
src/Command/Generating/Generate.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->blocks]
23
+            'params' => [ $this->blocks ]
24 24
         ];
25 25
     }
26 26
 }
Please login to merge, or discard this patch.
src/Command/Mining/GetBlockSubsidy.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,6 +24,6 @@
 block discarded – undo
24 24
             'params' => [
25 25
                 $this->height
26 26
             ]
27
-        ] : []);
27
+        ] : [ ]);
28 28
     }
29 29
 }
Please login to merge, or discard this patch.
src/Validation/Mining/GetBlockTemplateValidator.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
                 );
27 27
             }
28 28
 
29
-            array_walk($decoded->capabilities, function ($item) {
29
+            array_walk($decoded->capabilities, function($item) {
30 30
                 if (!is_string($item)) {
31 31
                     throw new JsonFormatException("JSON property `capabilities` must only contain strings.");
32 32
                 }
Please login to merge, or discard this patch.
src/Command/Mining/GetBlockTemplate.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,6 +31,6 @@
 block discarded – undo
31 31
             'params' => [
32 32
                 $this->json
33 33
             ]
34
-        ] : []);
34
+        ] : [ ]);
35 35
     }
36 36
 }
Please login to merge, or discard this patch.