replace PHP sizeof() with either count() or empty()

This commit is contained in:
marc tobias
2018-03-22 12:36:24 +01:00
parent d79a2bb17e
commit 27bc8d4f7b
19 changed files with 75 additions and 68 deletions

View File

@@ -164,12 +164,12 @@ class PlaceLookup
$aResults = $this->lookup(array($iPlaceID => new Result($iPlaceID)));
return sizeof($aResults) ? reset($aResults) : null;
return empty($aResults) ? null : reset($aResults);
}
public function lookup($aResults, $iMinRank = 0, $iMaxRank = 30)
{
if (!sizeof($aResults)) {
if (empty($aResults)) {
return array();
}
$aSubSelects = array();
@@ -408,7 +408,7 @@ class PlaceLookup
if (CONST_Debug) var_dump($aSubSelects);
if (!sizeof($aSubSelects)) {
if (empty($aSubSelects)) {
return array();
}