PHP 8.2 compatibility: Use of "self" in callables is deprecated

This commit is contained in:
El RIDO 2022-10-25 07:15:09 +02:00
parent 849c1c7cd1
commit bff4d3a016
No known key found for this signature in database
GPG key ID: 0F5C940A6BD81F92
3 changed files with 5 additions and 5 deletions

View file

@ -84,7 +84,7 @@ class I18n
*/
public static function _($messageId)
{
return forward_static_call_array('self::translate', func_get_args());
return forward_static_call_array('PrivateBin\I18n::translate', func_get_args());
}
/**