Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 6 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
SystemCheckAccessObject | |
0.00% |
0 / 6 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
__construct | |
0.00% |
0 / 6 |
|
0.00% |
0 / 1 |
2 |
1 | <?php |
2 | |
3 | declare(strict_types=1); |
4 | |
5 | class SystemCheckAccessObject extends AccessObject { |
6 | public function __construct( |
7 | readonly public string $workspaceId, |
8 | string $id, |
9 | AccessObjectType $type, |
10 | string $label, |
11 | public readonly string $description, |
12 | array $flags = [] |
13 | ) { |
14 | parent::__construct( |
15 | $id, |
16 | $type, |
17 | $label, |
18 | $flags |
19 | ); |
20 | } |
21 | |
22 | } |