blob: 68272d410bc5cf2679a2efea172957c2bb102376 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
namespace Psso;
class Identity {
public protected(set) string $user;
public protected(set) array $groups;
public function __construct(string $user, array $groups = []) {
$this->user = $user;
$this->groups = $groups;
}
}
|