Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | public function __construct( |
||
17 | ?string $description = null, |
||
18 | ?string $identifier = null, |
||
19 | ?string $number = null, |
||
20 | ?string $row = null, |
||
21 | ?string $section = null, |
||
22 | ?string $type = null |
||
23 | ) { |
||
24 | $this->description = $description; |
||
25 | $this->identifier = $identifier; |
||
26 | $this->number = $number; |
||
27 | $this->row = $row; |
||
28 | $this->section = $section; |
||
29 | $this->type = $type; |
||
30 | } |
||
66 |