Fixed: Cache should be array, not string
This commit is contained in:
parent
513cf6616d
commit
a39c8513c9
|
@ -102,7 +102,10 @@ class NamiGuard {
|
||||||
$this->setUser(null);
|
$this->setUser(null);
|
||||||
}
|
}
|
||||||
|
|
||||||
private function resolveCache(): ?string
|
/**
|
||||||
|
* @return array<string, string>
|
||||||
|
*/
|
||||||
|
private function resolveCache(): ?array
|
||||||
{
|
{
|
||||||
return $this->cache->get('namiauth-'.$this->session->get($this->getName()));
|
return $this->cache->get('namiauth-'.$this->session->get($this->getName()));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue