Total Complexity | 1 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
8 | class ClientReadResult extends ClientData |
||
9 | { |
||
10 | // Amount of notes for the client to know how many skeleton loaders to display |
||
11 | public ?int $notesAmount = null; |
||
12 | |||
13 | // Main note data |
||
14 | public ?NoteData $mainNoteData = null; |
||
15 | |||
16 | // If allowed to change personal client values i.e. first name, last name, location, birthdate |
||
17 | public ?string $generalPrivilege = null; |
||
18 | public ?string $clientStatusPrivilege = null; |
||
19 | public ?string $assignedUserPrivilege = null; |
||
20 | public ?string $noteCreationPrivilege = null; |
||
21 | |||
22 | 3 | public function __construct(array $clientResultData = []) |
|
36 |