Test Setup Failed
Push — master ( 97674e...cd6248 )
by Kevin
01:39
created
src/DBFaker.php 1 patch
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
                 if (array_search($column->getName(), $table->getPrimaryKeyColumns()) !== false) {
128 128
                     if ($column->getAutoincrement()){
129 129
                         $value = null;
130
-                    }else{
130
+                    } else{
131 131
                         return $this->getUniqueValue($table, $column);
132 132
                     }
133 133
                 }
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
                 else {
136 136
                     if (!$column->getNotnull() && $this->nullProbabilityOccured()){
137 137
                         $value = null;
138
-                    }else{
138
+                    } else{
139 139
                         $value = $this->generatorFinder->findGenerator($table, $column)($column);
140 140
                     }
141 141
                 }
Please login to merge, or discard this patch.