Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
44 | 6 | public function __construct( |
|
45 | string $name, |
||
46 | string $description = null, |
||
47 | ExternalDocumentation $externalDocs = null, |
||
48 | array $additionalProperties = [] |
||
49 | ) { |
||
50 | 6 | parent::__construct($additionalProperties); |
|
51 | 6 | $this->name = $name; |
|
52 | 6 | $this->description = $description; |
|
53 | 6 | $this->externalDocs = $externalDocs; |
|
54 | 6 | } |
|
56 |