Completed
Push — master ( 3c4917...c12914 )
by Gabriel
03:23
created
src/Variables.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
         return $this->doCreate(
16 16
             self::ENDPOINT,
17 17
             $variable,
18
-            function ($response) use ($variable) {
18
+            function($response) use ($variable) {
19 19
                 return (new VariableMapper())->map($variable, $response);
20 20
             }
21 21
         );
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
         return $this->doUpdate(
28 28
             self::ENDPOINT."/{$variable->getId()}",
29 29
             $variable,
30
-            function ($response) use ($variable) {
30
+            function($response) use ($variable) {
31 31
                 return (new VariableMapper())->map($variable, $response);
32 32
             }
33 33
         );
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
     {
47 47
         return $this->doFetch(
48 48
             self::ENDPOINT,
49
-            function ($response) {
49
+            function($response) {
50 50
                 return (new VariablesMapper())->map(new Collections\Variables(), $response);
51 51
             }
52 52
         );
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
             self::ENDPOINT,
59 59
             $orderBy,
60 60
             $order,
61
-            function ($response) {
61
+            function($response) {
62 62
                 return (new VariablesMapper())->map(new Collections\Variables(), $response);
63 63
             }
64 64
         );
Please login to merge, or discard this patch.