Updated application to use bool and int instead of boolean and integer. Also added an order by to the getSubscriptionCounties function
This commit is contained in:
@@ -95,7 +95,7 @@ class ActiveUserSubscriptions extends TCPDF {
|
||||
|
||||
foreach ($users as $user) {
|
||||
|
||||
$user_serial = (integer) $user->user_serial;
|
||||
$user_serial = (int) $user->user_serial;
|
||||
|
||||
$subscriptions = (new Subscriptions())->getUsersActiveSubscriptions($user_serial);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user