Passed
Push — 3.x ( ab95ba...f9570a )
by Enjoys
01:52
created
src/Renderer/Bootstrap4/Bootstrap4RadioRender.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
     protected function renderRadio(\Enjoys\Forms\Element $element): string
43 43
     {
44 44
         $return = '';
45
-         /** @var \Enjoys\Forms\Elements\Radio $element */
45
+            /** @var \Enjoys\Forms\Elements\Radio $element */
46 46
         foreach ($element->getElements() as $data) {
47 47
             $data->addClass('custom-control-input');
48 48
             $data->addClass('custom-control-label', \Enjoys\Forms\Form::ATTRIBUTES_LABEL);
Please login to merge, or discard this patch.
src/Renderer/BaseRenderer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
     protected Form $form;
42 42
     protected array $elements = [];
43 43
     
44
-    public function __construct(Form $form = null){   
44
+    public function __construct(Form $form = null) {   
45 45
         $this->form = $this->setForm($form ?? new Form());
46 46
     }
47 47
     /**
Please login to merge, or discard this patch.