feature/update-to-php81 #29

Merged
bence merged 5 commits from feature/update-to-php81 into master 2023-09-27 22:11:05 +02:00
Showing only changes of commit 2226b88a88 - Show all commits

View File

@ -86,12 +86,12 @@ class DatabaseSessionHandler implements ISessionHandler
return true;
}
public function gc($maxlifetime): bool
public function gc($maxlifetime): int|false
{
// empty on purpose
// old sessions are deleted by MaintainDatabaseCommand
return true;
return 1;
}
public function create_sid(): string