Optional-first arguments is deprecated in php8.0
This commit is contained in:
parent
d7c77f607c
commit
cf266e1f96
1 changed files with 1 additions and 1 deletions
|
|
@ -456,7 +456,7 @@ class App
|
|||
return $this;
|
||||
}
|
||||
|
||||
public static function Log(int $level = Logger::DEBUG, $message)
|
||||
public static function Log($message, int $level = Logger::DEBUG)
|
||||
{
|
||||
return self::Instance()
|
||||
->getLogger()
|
||||
|
|
|
|||
Loading…
Reference in a new issue