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