Use empty to check for empty array

This commit is contained in:
MarkBaker 2019-07-14 13:36:23 +02:00
parent 6500128451
commit 36135a4c05
1 changed files with 1 additions and 1 deletions

View File

@ -1155,7 +1155,7 @@ class Statistical
// Return value // Return value
$returnValue = 0; $returnValue = 0;
if (!$arrayList) { if (empty($arrayList)) {
return $returnValue; return $returnValue;
} }