Files
alrahma_sunday_school/app/Config/SessionTimeout.php
T
root 09ea144bb2
Tests / PHPUnit (push) Failing after 34s
fix issues related to school year
2026-07-31 18:52:25 -04:00

19 lines
444 B
PHP

<?php
namespace Config;
class SessionTimeout
{
// Session timeout in seconds (30 minutes)
public const TIMEOUT_DURATION = 1800;
// Show warning during the last 30 seconds before timeout.
public const WARNING_THRESHOLD = 1770;
// Server-side check interval (in seconds)
public const CHECK_INTERVAL = 5;
// Client-side check interval (in milliseconds)
public const CLIENT_CHECK_INTERVAL = 5000;
}