Completed
Push — master ( 9e4642...1f55bf )
by Nathan
02:13
created
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/Network/SetBan.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
             'id'      => Command::ID,
30 30
             'method'  => self::METHOD,
31 31
             'params' => array_merge(
32
-                [ $this->ip, (string) $this->command],
32
+                [ $this->ip, (string) $this->command ],
33 33
                 !is_null($this->banTime) ? [ $this->banTime ] : [ ],
34 34
                 !is_null($this->absolute) && !is_null($this->banTime) ? [ $this->absolute ] : [ ]
35 35
             )
Please login to merge, or discard this patch.
src/Command/RawTransactions/CreateRawTransaction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
 
35 35
     public function jsonSerialize(): object
36 36
     {
37
-        $addresses = [];
37
+        $addresses = [ ];
38 38
 
39 39
         foreach ($this->recipients as $recipient) {
40 40
             $addresses = array_merge($addresses, (array) $recipient->jsonSerialize());
Please login to merge, or discard this patch.