1
0
Fork 0

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

This commit is contained in:
Philipp Holzer 2022-10-18 21:10:37 +02:00
commit 7ac86e49d1
Signed by: nupplaPhil
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') ?? '';
}
/**