Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
SysCheckReport | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
__construct | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 |
1 | <?php |
2 | |
3 | /** @noinspection PhpUnhandledExceptionInspection */ |
4 | |
5 | class SysCheckReport extends DataCollection { |
6 | |
7 | public $keyPhrase = ''; |
8 | public $title = ''; |
9 | public $environment = []; |
10 | public $network = []; |
11 | public $questionnaire = []; |
12 | public $unit = []; |
13 | public $date = ''; |
14 | public $responses = ''; |
15 | |
16 | public $checkId = '--'; |
17 | public $checkLabel = '--'; |
18 | |
19 | public function __construct($initData) { |
20 | |
21 | $this->date = TimeStamp::toSQLFormat(TimeStamp::now()); |
22 | |
23 | parent::__construct($initData); |
24 | } |
25 | |
26 | } |