diff options
| author | winter Sparkles | 2026-08-09 15:44:18 +0100 |
|---|---|---|
| committer | winter Sparkles | 2026-08-09 15:44:18 +0100 |
| commit | 96387025da63025894f6259f7eebed0fc6fc53ac (patch) | |
| tree | a83d73eeb7ec419b24ff78291634503d4ebceec1 /Psso/Context.php | |
| parent | c8998ccdff070d7c73a634e031a041260b87c3b1 (diff) | |
implement the rest of login process incl. cookie redirects and 'next'
Diffstat (limited to 'Psso/Context.php')
| -rw-r--r-- | Psso/Context.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Psso/Context.php b/Psso/Context.php index 5af2102..ed1e6f9 100644 --- a/Psso/Context.php +++ b/Psso/Context.php @@ -4,8 +4,9 @@ namespace Psso; class Context { public protected(set) array $results = []; public ?string $user = null; - public protected(set) array $groups = []; + public array $groups = []; public protected(set) array $tags = []; + public array $extras = []; public function addResult(ChallengeResult $result): void { $this->results[] = $result; |
