Completed
Push — master ( 29cde4...77c4c6 )
by Ori
03:02
created
src/Exceptions/DataSourceException.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,9 @@
 block discarded – undo
10 10
 {
11 11
     public function __construct($message, $rowNum=0)
12 12
     {
13
-        if (!empty($rowNum)) $message = "row {$rowNum}: {$message}";
13
+        if (!empty($rowNum)) {
14
+            $message = "row {$rowNum}: {$message}";
15
+        }
14 16
         parent::__construct($message);
15 17
     }
16 18
 }
Please login to merge, or discard this patch.
src/Table.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,9 @@
 block discarded – undo
37 37
             $i = 0;
38 38
             try {
39 39
                 foreach ($table as $row) {
40
-                    if (++$i > $numPeekRows) break;
40
+                    if (++$i > $numPeekRows) {
41
+                        break;
42
+                    }
41 43
                 }
42 44
             } catch (Exceptions\DataSourceException $e) {
43 45
                 // general error in getting the next row from the data source
Please login to merge, or discard this patch.
src/Fields/FieldsInferrer.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -116,7 +116,9 @@
 block discarded – undo
116 116
             try {
117 117
                 $rowNum = 0;
118 118
                 foreach ($this->inputRows as $inputRow) {
119
-                    if (!array_key_exists($rowNum, $this->castRows)) $this->castRows[$rowNum] = [];
119
+                    if (!array_key_exists($rowNum, $this->castRows)) {
120
+                        $this->castRows[$rowNum] = [];
121
+                    }
120 122
                     $this->castRows[$rowNum][$fieldName] = $inferredField->castValue($inputRow[$fieldName]);
121 123
                     $rowNum++;
122 124
                 }
Please login to merge, or discard this patch.
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.