Completed
Push — master ( 67c695...3237e3 )
by dotzero
01:58
created
src/Models/Pipelines.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@
 block discarded – undo
99 99
         $response = $this->postRequest('/private/api/v2/json/pipelines/set', $parameters);
100 100
 
101 101
         if (isset($response['pipelines']['add']['pipelines'])) {
102
-            $result = array_map(function ($item) {
102
+            $result = array_map(function($item) {
103 103
                 return $item['id'];
104 104
             }, $response['pipelines']['add']['pipelines']);
105 105
         } else {
Please login to merge, or discard this patch.
src/Models/CustomersPeriods.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
         $response = $this->postRequest('/private/api/v2/json/customers_periods/set', $parameters);
76 76
 
77 77
         if (isset($response['customers_periods']['set'])) {
78
-            $result = array_map(function ($item) {
78
+            $result = array_map(function($item) {
79 79
                 return $item['id'];
80 80
             }, $response['customers_periods']['set']);
81 81
         } else {
Please login to merge, or discard this patch.
src/Models/Customer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@
 block discarded – undo
104 104
         $response = $this->postRequest('/private/api/v2/json/customers/set', $parameters);
105 105
 
106 106
         if (isset($response['customers']['add'])) {
107
-            $result = array_map(function ($item) {
107
+            $result = array_map(function($item) {
108 108
                 return $item['id'];
109 109
             }, $response['customers']['add']['customers']);
110 110
         } else {
Please login to merge, or discard this patch.