Completed
Push — master ( 29cde4...77c4c6 )
by Ori
03:02
created
src/Schema.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -143,7 +143,9 @@
 block discarded – undo
143 143
         $validationErrors = [];
144 144
         foreach ($this->fields() as $fieldName => $field) {
145 145
             $value = array_key_exists($fieldName, $row) ? $row[$fieldName] : null;
146
-            if (in_array($value, $this->missingValues())) $value = null;
146
+            if (in_array($value, $this->missingValues())) {
147
+                $value = null;
148
+            }
147 149
             try {
148 150
                 $outRow[$fieldName] = $field->castValue($value);
149 151
             } catch (Exceptions\FieldValidationException $e) {
Please login to merge, or discard this patch.
src/Fields/BaseField.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -118,7 +118,9 @@
 block discarded – undo
118 118
     final public function castValue($val)
119 119
     {
120 120
         if ($this->isEmptyValue($val)) {
121
-            if ($this->required()) throw $this->getValidationException("field is required", $val);
121
+            if ($this->required()) {
122
+                throw $this->getValidationException("field is required", $val);
123
+            }
122 124
             return null;
123 125
         } else {
124 126
             return $this->validateCastValue($val);
Please login to merge, or discard this patch.