fix: method name

Need to be get and not set

Signed-off-by: Vitor Mattos <vitor@php.rio>
This commit is contained in:
Vitor Mattos 2025-01-13 07:19:03 -03:00
parent cb41a41438
commit 5e56f381c8

View file

@ -40,7 +40,7 @@ class SessionService {
}
public function resetDurationOfSignPage(): void {
$renewalInterval = $this->appConfig->setValueInt(Application::APP_ID, 'renewal_interval', self::NO_RENEWAL_INTERVAL);
$renewalInterval = $this->appConfig->getValueInt(Application::APP_ID, 'renewal_interval', self::NO_RENEWAL_INTERVAL);
if ($renewalInterval <= self::NO_RENEWAL_INTERVAL) {
return;
}