Move Core\Session::get() to DI::session()->get()

This commit is contained in:
Philipp 2022-10-18 21:10:37 +02:00
parent 99d5441007
commit 7ac86e49d1
No known key found for this signature in database
GPG key ID: 24A7501396EB5432
15 changed files with 36 additions and 31 deletions

View file

@ -683,7 +683,7 @@ class Profile
*/
public static function getMyURL(): string
{
return Session::get('my_url') ?? '';
return DI::session()->get('my_url') ?? '';
}
/**