Test Failed
Push — master ( 0d5d14...c17ef6 )
by SuperNova.WS
06:37
created
classes/DBAL/DbIndexField.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     $this->Collation    = isset($indexField['Collation']) ? $indexField['Collation'] : null;
28 28
     $this->Cardinality  = isset($indexField['Cardinality']) ? $indexField['Cardinality'] : null;
29 29
     $this->Sub_part     = isset($indexField['Sub_part']) ? $indexField['Sub_part'] : null;
30
-    $this->Null         = isset($indexField['Null']) ? $indexField['Null'] : null;
30
+    $this->null         = isset($indexField['Null']) ? $indexField['Null'] : null;
31 31
     $this->Expression   = isset($indexField['Expression']) ? $indexField['Expression'] : null;
32 32
 
33 33
     return $this;
Please login to merge, or discard this patch.
classes/DBAL/PropertyDescription.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -153,7 +153,7 @@
 block discarded – undo
153 153
 
154 154
 
155 155
     // If this field is not null and default value is not set - then this field is mandatory
156
-    if ($fieldDescription->Null === 'NO' && $fieldDescription->Default === null && !$nonMandatory) {
156
+    if ($fieldDescription->null === 'NO' && $fieldDescription->Default === null && !$nonMandatory) {
157 157
       $this->mandatory = true;
158 158
     }
159 159
 
Please login to merge, or discard this patch.