Passed
Push — master ( 0a0bcf...92e6c5 )
by Bruno
06:17
created
Formularium/Frontend/React/Renderable/Renderable_file.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     public function editable($value, Field $field, HTMLElement $previous): HTMLElement
16 16
     {
17 17
         $previous->filter(
18
-            function ($e) {
18
+            function($e) {
19 19
                 if ($e->getTag() === 'canvas') {
20 20
                     return false;
21 21
                 }
Please login to merge, or discard this patch.
Formularium/Frontend/React/RenderableReactTrait.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 fix($value, Field $field, HTMLElement $previous): HTMLElement
21 21
     {
22
-        $previous->walk(function (HTMLElement $element) use ($field) {
22
+        $previous->walk(function(HTMLElement $element) use ($field) {
23 23
             if ($element->getTag() === 'input') {
24 24
                 if ($element->getAttribute('type') === ['checkbox']) {
25 25
                     $element->setAttribute('checked', "{this.state.{$field->getName()}}");
Please login to merge, or discard this patch.