#2220 points module (rewrite the sms verification module) !4

This commit is contained in:
Diatrex 2020-10-09 16:55:18 +03:00
parent 15ffa5646b
commit a16e6c63a5

View File

@ -24,4 +24,11 @@ if (!function_exists('get_buyables'))
function get_buyables() {
return dispatch_now(new GetBuyables());
}
}
if (!function_exists('auth_id_if_null'))
{
function auth_id_if_null($userId) {
return $userId ?: auth()->id();
}
}