Skip to content

Commit

Permalink
Fix Php Cs
Browse files Browse the repository at this point in the history
  • Loading branch information
BadPixxel committed Feb 26, 2025
1 parent 4f76db6 commit c86550f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ private function getAddressesList()
$addressList = Db::getInstance()->executeS($sql);
//====================================================================//
// If Address List Is Empty => Null
if (empty($addressList)) {
if (empty($addressList) || !is_iterable($addressList)) {
return;
}
//====================================================================//
Expand Down

0 comments on commit c86550f

Please sign in to comment.