Fixed expired cookie test

This commit is contained in:
philipp lang 2021-11-11 23:52:16 +01:00
parent 2ea3bd6160
commit 07595f681d
1 changed files with 5 additions and 0 deletions

View File

@ -18,4 +18,9 @@ class FakeCookie {
return $this->loggedIn;
}
public function isExpired(): bool
{
return false;
}
}