Passed
Pull Request — master (#3)
by Marcus
08:52
created
src/Roaring.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
      * @param  array  $parameters
65 65
      * @return Roaring
66 66
      */
67
-    public function get(string $path, array $headers = [], array $parameters = []): Roaring
67
+    public function get(string $path, array $headers = [ ], array $parameters = [ ]): Roaring
68 68
     {
69 69
         if ($this->token) {
70 70
             $headers += [
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
      * @param  array  $body
91 91
      * @return Roaring
92 92
      */
93
-    public function post(string $path, array $headers = [], array $body = []): Roaring
93
+    public function post(string $path, array $headers = [ ], array $body = [ ]): Roaring
94 94
     {
95 95
         if ($this->token) {
96 96
             $headers += [
Please login to merge, or discard this patch.