| Total Complexity | 1 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 5 | class ActiveDirectoryUser { |
||
| 6 | |||
| 7 | public readonly string $username; |
||
| 8 | public readonly string $firstname; |
||
| 9 | public readonly string $lastname; |
||
| 10 | public readonly ?string $grade; |
||
| 11 | public readonly string $guid; |
||
| 12 | |||
| 13 | public function __construct(string $username, string $firstname, string $lastname, ?string $grade, string $guid) { |
||
| 19 | } |
||
| 20 | } |