| Total Complexity | 1 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class UserType { |
||
| 8 | public readonly string $uuid; |
||
| 9 | |||
| 10 | public readonly string $name; |
||
| 11 | |||
| 12 | public readonly string $alias; |
||
| 13 | |||
| 14 | #[Serializer\Type("array<string>")] |
||
| 15 | public readonly array $eduPersonAffiliation; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @param string $uuid |
||
| 19 | * @param string $name |
||
| 20 | * @param string $alias |
||
| 21 | * @param string[] $eduPersonAffiliation |
||
| 22 | */ |
||
| 23 | public function __construct(string $uuid, string $name, string $alias, array $eduPersonAffiliation) { |
||
| 28 | } |
||
| 29 | } |