Completed
Branch develop (81fbf8)
by Steve
05:37
created
src/FieldsBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@
 block discarded – undo
100 100
      */
101 101
     private function buildFields()
102 102
     {
103
-        $fields = array_map(function ($field) {
103
+        $fields = array_map(function($field) {
104 104
             return ($field instanceof Builder) ? $field->build() : $field;
105 105
         }, $this->getFields());
106 106
 
Please login to merge, or discard this patch.
src/FlexibleContentBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
      */
65 65
     private function buildLayouts()
66 66
     {
67
-        return array_map(function ($layout) {
67
+        return array_map(function($layout) {
68 68
             $layout = ($layout instanceof Builder) ? $layout->build() : $layout;
69 69
             return $this->transformLayout($layout);
70 70
         }, $this->getLayouts());
Please login to merge, or discard this patch.
src/Transform/RecursiveTransform.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
     public function transform($config)
33 33
     {
34
-        array_walk($config, function (&$value, $key) {
34
+        array_walk($config, function(&$value, $key) {
35 35
             if (in_array($key, $this->getKeys(), true)) {
36 36
                 $value = $this->transformValue($value);
37 37
             } else {
Please login to merge, or discard this patch.