Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
63 | 12 | public function __construct( |
|
64 | string $title, |
||
65 | string $version, |
||
66 | string $description = null, |
||
67 | array $additionalProperties = [] |
||
68 | ) { |
||
69 | 12 | parent::__construct($additionalProperties); |
|
70 | |||
71 | 12 | $this->title = $title; |
|
72 | 12 | $this->version = $version; |
|
73 | 12 | $this->description = $description; |
|
74 | 12 | } |
|
76 |