Completed
Push — master ( efc908...2ccc8e )
by Jose Luis
03:00
created
src/Field/Select/SelectFieldType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -95,11 +95,11 @@
 block discarded – undo
95 95
     public function present()
96 96
     {
97 97
         $options = [];
98
-        foreach(unserialize($this->fieldOptions) as $o)
98
+        foreach (unserialize($this->fieldOptions) as $o)
99 99
         {
100 100
             $options[$o] = $o;
101 101
         }
102
-        return Field::select($this->fieldSlug, $options , $this->value, ['label' => $this->fieldName, 'class' => 'select2']);
102
+        return Field::select($this->fieldSlug, $options, $this->value, ['label' => $this->fieldName, 'class' => 'select2']);
103 103
     }
104 104
 
105 105
     /**
Please login to merge, or discard this patch.