Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 6 |
|
0.00% |
0 / 6 |
CRAP | |
0.00% |
0 / 1 |
SystemCheck | |
0.00% |
0 / 6 |
|
0.00% |
0 / 6 |
42 | |
0.00% |
0 / 1 |
__construct | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getId | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getDescription | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getLabel | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getName | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
getWorkspaceId | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 |
1 | <?php |
2 | |
3 | declare(strict_types=1); |
4 | |
5 | class SystemCheck extends DataCollectionTypeSafe { |
6 | |
7 | public function __construct( |
8 | protected string $workspaceId, |
9 | protected string $id, |
10 | protected string $name, |
11 | protected string $label, |
12 | protected string $description |
13 | ) { |
14 | } |
15 | |
16 | public function getId(): string { |
17 | return $this->id; |
18 | } |
19 | |
20 | public function getDescription(): string { |
21 | return $this->description; |
22 | } |
23 | |
24 | public function getLabel(): string { |
25 | return $this->label; |
26 | } |
27 | |
28 | public function getName(): string { |
29 | return $this->name; |
30 | } |
31 | |
32 | public function getWorkspaceId(): string { |
33 | return $this->workspaceId; |
34 | } |
35 | |
36 | } |