Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
| ReportingRequestDTO | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
| __construct | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| 1 | <?php |
| 2 | |
| 3 | namespace App\DTO\AccountCenter\Reporting; |
| 4 | |
| 5 | class ReportingRequestDTO |
| 6 | { |
| 7 | public function __construct( |
| 8 | public readonly ?string $fromDate, |
| 9 | public readonly ?string $toDate, |
| 10 | public readonly ?string $companyId, |
| 11 | public readonly ?array $adminGroupIds, |
| 12 | public readonly ?string $userIds, |
| 13 | public readonly ?string $groupIds, |
| 14 | public readonly ?string $subgroupIds, |
| 15 | public readonly ?string $role, |
| 16 | public readonly ?array $companyIds = null, |
| 17 | ) {} |
| 18 | } |