Prepare modules

This commit is contained in:
2025-03-22 12:44:30 -06:00
parent 099267ee07
commit 7d8566350d
137 changed files with 3723 additions and 4325 deletions

View File

@ -10,12 +10,12 @@ class SessionManagerService
{
private string $driver;
public function __construct(string $driver = null)
public function __construct(mixed $driver = null)
{
$this->driver = $driver ?? config('session.driver');
}
public function getSessionStats(string $driver = null): array
public function getSessionStats(mixed $driver = null): array
{
$driver = $driver ?? $this->driver;
@ -41,7 +41,7 @@ class SessionManagerService
}
}
public function clearSessions(string $driver = null): array
public function clearSessions(mixed $driver = null): array
{
$driver = $driver ?? $this->driver;