Completed
Branch scrutinizer (a66750)
by Teye
06:36
created
Category
src/Collections/TransformCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
      */
35 35
     public function toArray(): array
36 36
     {
37
-        return array_map(function (TransformInterface $item) {
37
+        return array_map(function(TransformInterface $item) {
38 38
             return $item->toArray();
39 39
         }, $this->items);
40 40
     }
Please login to merge, or discard this patch.
src/Collections/IntervalCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      */
25 25
     public function toArray(): array
26 26
     {
27
-        return array_map(function (IntervalInterface $item) {
27
+        return array_map(function(IntervalInterface $item) {
28 28
             return $item->getInterval();
29 29
         }, $this->items);
30 30
     }
Please login to merge, or discard this patch.
src/Collections/AggregationCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
      */
30 30
     public function toArray(): array
31 31
     {
32
-        return array_map(function (AggregatorInterface $item) {
32
+        return array_map(function(AggregatorInterface $item) {
33 33
             return $item->toArray();
34 34
         }, $this->items);
35 35
     }
Please login to merge, or discard this patch.
src/Collections/OrderByCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      */
25 25
     public function toArray(): array
26 26
     {
27
-        return array_map(function (OrderByInterface $item) {
27
+        return array_map(function(OrderByInterface $item) {
28 28
             return $item->toArray();
29 29
         }, $this->items);
30 30
     }
Please login to merge, or discard this patch.
src/Collections/PostAggregationCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
      */
20 20
     public function toArray(): array
21 21
     {
22
-        return array_map(function (PostAggregatorInterface $item) {
22
+        return array_map(function(PostAggregatorInterface $item) {
23 23
             return $item->toArray();
24 24
         }, $this->items);
25 25
     }
Please login to merge, or discard this patch.
src/Collections/DimensionCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
      */
35 35
     public function toArray(): array
36 36
     {
37
-        return array_map(function (DimensionInterface $item) {
37
+        return array_map(function(DimensionInterface $item) {
38 38
             return $item->toArray();
39 39
         }, $this->items);
40 40
     }
Please login to merge, or discard this patch.
src/Collections/VirtualColumnCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
      */
20 20
     public function toArray(): array
21 21
     {
22
-        return array_map(function (VirtualColumnInterface $item) {
22
+        return array_map(function(VirtualColumnInterface $item) {
23 23
             return $item->toArray();
24 24
         }, $this->items);
25 25
     }
Please login to merge, or discard this patch.
src/Extractions/CascadeExtraction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
     {
35 35
         return [
36 36
             'type'          => 'cascade',
37
-            'extractionFns' => array_map(function (ExtractionInterface $extraction) {
37
+            'extractionFns' => array_map(function(ExtractionInterface $extraction) {
38 38
                 return $extraction->toArray();
39 39
             }, $this->extractions),
40 40
         ];
Please login to merge, or discard this patch.
src/HavingFilters/AndHavingFilter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
     {
32 32
         return [
33 33
             'type'        => 'and',
34
-            'havingSpecs' => array_map(function (HavingFilterInterface $filter) {
34
+            'havingSpecs' => array_map(function(HavingFilterInterface $filter) {
35 35
                 return $filter->toArray();
36 36
             }, $this->filters),
37 37
         ];
Please login to merge, or discard this patch.