Passed
Push — master ( 9eef8c...5fe78e )
by Bruno
14:35 queued 04:33
created
Formularium/Frontend/Materialize/Element/Button.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
         if ($icon) {
26 26
             $iconElement = HTMLNode::factory(
27 27
                 'i',
28
-                [ 'class' => "material-icons left" ],
28
+                ['class' => "material-icons left"],
29 29
                 $icon
30 30
             );
31 31
             $previous->prependContent($iconElement);
Please login to merge, or discard this patch.
Formularium/Frontend/Bulma/Element/Button.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
                 [
41 41
                     HTMLNode::factory(
42 42
                         'i',
43
-                        [ 'class' => $iconData ],
43
+                        ['class' => $iconData],
44 44
                         []
45 45
                     )
46 46
                 ]
Please login to merge, or discard this patch.
Formularium/Frontend/Bulma/RenderableBulmaInputTrait.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,11 +56,11 @@
 block discarded – undo
56 56
             $iconData[] = $icon;
57 57
             $iconElement = HTMLNode::factory(
58 58
                 'span',
59
-                [ 'class' => "icon is-small is-left" ],
59
+                ['class' => "icon is-small is-left"],
60 60
                 [
61 61
                     HTMLNode::factory(
62 62
                         'i',
63
-                        [ 'class' => $iconData ],
63
+                        ['class' => $iconData],
64 64
                         []
65 65
                     )
66 66
                 ]
Please login to merge, or discard this patch.
Formularium/Frontend/Bulma/Renderable/Renderable_file.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
                                     ['class' => "file-icon"],
54 54
                                     HTMLNode::factory(
55 55
                                         'i',
56
-                                        [ 'class' => "fas fa-upload" ]
56
+                                        ['class' => "fas fa-upload"]
57 57
                                     )
58 58
                                 ),
59 59
                                 HTMLNode::factory(
Please login to merge, or discard this patch.
Formularium/Frontend/Buefy/RenderableBuefyInputTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     {
28 28
         // add extra classes
29 29
         $previous->walk(
30
-            function ($e) use ($field) {
30
+            function($e) use ($field) {
31 31
                 if ($e instanceof HTMLNode) {
32 32
                     if ($e->getTag() === 'input') {
33 33
                         if (($e->getAttribute('type')[0] ?? '') === 'radio') {
Please login to merge, or discard this patch.
Formularium/Frontend/Buefy/Renderable/Renderable_file.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -59,12 +59,12 @@
 block discarded – undo
59 59
                                 [],
60 60
                                 HTMLNode::factory(
61 61
                                     'b-icon',
62
-                                    [ 'icon' => "upload", 'size' => "is-large" ]
62
+                                    ['icon' => "upload", 'size' => "is-large"]
63 63
                                 )
64 64
                             ),
65 65
                             HTMLNode::factory(
66 66
                                 'p',
67
-                                [ 'class' => 'formularium-label'],
67
+                                ['class' => 'formularium-label'],
68 68
                                 $renderable[Renderable::LABEL] ?? ''
69 69
                             )
70 70
                         ]
Please login to merge, or discard this patch.
Formularium/Frontend/Buefy/Renderable/Renderable_date.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     {
28 28
         // add extra classes
29 29
         $previous->walk(
30
-            function ($e) {
30
+            function($e) {
31 31
                 if ($e instanceof HTMLNode) {
32 32
                     if ($e->getTag() === 'input') {
33 33
                         $e->setTag('b-datepicker');
Please login to merge, or discard this patch.
Formularium/Frontend/Buefy/Renderable/Renderable_datetime.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     {
28 28
         // add extra classes
29 29
         $previous->walk(
30
-            function ($e) {
30
+            function($e) {
31 31
                 if ($e instanceof HTMLNode) {
32 32
                     if ($e->getTag() === 'input') {
33 33
                         $e->setTag('b-datetimepicker');
Please login to merge, or discard this patch.
Formularium/Frontend/Buefy/Renderable/Renderable_time.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     {
28 28
         // add extra classes
29 29
         $previous->walk(
30
-            function ($e) {
30
+            function($e) {
31 31
                 if ($e instanceof HTMLNode) {
32 32
                     if ($e->getTag() === 'input') {
33 33
                         $e->setTag('b-clockpicker');
Please login to merge, or discard this patch.