mirror of
https://github.com/slawkens/myaac.git
synced 2025-11-27 21:56:50 +01:00
Fixes for PHP 8.3
This commit is contained in:
@@ -201,7 +201,7 @@ function getFlagImage($country): string
|
||||
* @param mixed $v Variable to check.
|
||||
* @return bool Value boolean status.
|
||||
*/
|
||||
function getBoolean($v): bool
|
||||
function getBoolean(mixed $v): bool
|
||||
{
|
||||
if(is_bool($v)) {
|
||||
return $v;
|
||||
@@ -210,6 +210,10 @@ function getBoolean($v): bool
|
||||
if(is_numeric($v))
|
||||
return (int)$v > 0;
|
||||
|
||||
if (is_null($v)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$v = strtolower($v);
|
||||
return $v === 'yes' || $v === 'true';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user