aboutsummaryrefslogtreecommitdiff
path: root/Psso/Context.php
blob: 4a2cd8275b4186cee3020a61b0ffa27b648c8a9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
namespace Psso;

class Context {
    public protected(set) array $results = [];
    public ?string $user = null;
    public protected(set) array $groups = [];
    public protected(set) array $tags = [];

    public function addResult(ChallengeResult $result): void {
        $this->results[] = $result;
    }
}