only code improvements

This commit is contained in:
Susann Sgorzaly
2018-02-27 13:22:11 +01:00
parent 5b1002a677
commit fbe5263bca

View File

@@ -97,7 +97,8 @@ trait DatatypeTrait {
$firstRow = $this->data[0]; $firstRow = $this->data[0];
} }
if (empty(array_filter($firstRow))){ $firstRow = array_filter($firstRow);
if (empty($firstRow)){
return false; return false;
} }