Passed
Pull Request — master (#1)
by Marcus
01:35
created
src/Roaring.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
      * @param  array  $parameters
58 58
      * @return Roaring
59 59
      */
60
-    public function get(string $path, array $headers = [], array $parameters = []) : Roaring
60
+    public function get(string $path, array $headers = [ ], array $parameters = [ ]) : Roaring
61 61
     {
62 62
         if ($this->token) {
63 63
             $headers += [
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
      * @param  array  $body
83 83
      * @return Roaring
84 84
      */
85
-    public function post(string $path, array $headers = [], array $body = []) : Roaring
85
+    public function post(string $path, array $headers = [ ], array $body = [ ]) : Roaring
86 86
     {
87 87
         if ($this->token) {
88 88
             $headers += [
Please login to merge, or discard this patch.