Passed
Push — master ( e4e6ff...42db21 )
by
unknown
40s
created
src/PaymentApi.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
      */
44 44
     protected function filterData(array $data)
45 45
     {
46
-        $data = array_map(function ($item) {
46
+        $data = array_map(function($item) {
47 47
             if (is_array($item)) {
48 48
                 $item = $this->filterData($item);
49 49
             }
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
             return $item;
52 52
         }, $data);
53 53
 
54
-        return array_filter($data, function ($item) {
54
+        return array_filter($data, function($item) {
55 55
             if (is_array($item)) {
56 56
                 return !empty($item);
57 57
             }
Please login to merge, or discard this patch.
src/Connectors/GloBeeCurlConnector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@
 block discarded – undo
124 124
     protected function getUserAgentString()
125 125
     {
126 126
         $platforms = $this->platforms;
127
-        array_walk($platforms, function (&$version, $platform) {
127
+        array_walk($platforms, function(&$version, $platform) {
128 128
             $version = $platform.'/'.$version;
129 129
         });
130 130
         $platforms = implode(' ', $platforms);
Please login to merge, or discard this patch.