Passed
Push — master ( 203229...773eda )
by Bruno
09:51
created
Formularium/ExtradataTrait.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,11 +30,11 @@
 block discarded – undo
30 30
     public function getExtradataSerialize(): array
31 31
     {
32 32
         return array_map(
33
-            function (Extradata $e) {
33
+            function(Extradata $e) {
34 34
                 return [
35 35
                     'name' => $e->getName(),
36 36
                     'args' => array_map(
37
-                        function (ExtradataParameter $a) {
37
+                        function(ExtradataParameter $a) {
38 38
                             return [
39 39
                                 'name' => $a->name,
40 40
                                 'value' => $a->value
Please login to merge, or discard this patch.
Formularium/Datatype.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@
 block discarded – undo
133 133
             $this->getDocumentation() .
134 134
                 "\n\nRandom value example: " . var_export($this->getRandom(), true) .
135 135
                 "\n\nSQL datatype: `" . $this->getSQLType() . "`" .
136
-                "\n\nLaravel SQL datatype: `" . $this->getLaravelSQLType('name')  . "`",
136
+                "\n\nLaravel SQL datatype: `" . $this->getLaravelSQLType('name') . "`",
137 137
             []
138 138
         );
139 139
     }
Please login to merge, or discard this patch.
Formularium/Frontend/Bootstrap/RenderableBootstrapWrapperTrait.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -64,17 +64,17 @@
 block discarded – undo
64 64
             $iconData[] = $icon;
65 65
             $group = HTMLNode::factory(
66 66
                 'div',
67
-                [ 'class' => "input-group mb-3" ],
67
+                ['class' => "input-group mb-3"],
68 68
                 [
69 69
                     HTMLNode::factory(
70 70
                         'div',
71
-                        [ 'class' => "input-group-prepend" ],
71
+                        ['class' => "input-group-prepend"],
72 72
                         HTMLNode::factory(
73 73
                             'span',
74
-                            [ 'class' => "input-group-text" ],
74
+                            ['class' => "input-group-text"],
75 75
                             HTMLNode::factory(
76 76
                                 'i',
77
-                                [ 'class' => $iconData ],
77
+                                ['class' => $iconData],
78 78
                                 []
79 79
                             )
80 80
                         )
Please login to merge, or discard this patch.