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