| Total Complexity | 5 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 7 | class Parameter implements \JsonSerializable |
||
| 8 | { |
||
| 9 | 15 | public function __construct( |
|
| 10 | public string $name, |
||
| 11 | public mixed $default = null, |
||
| 12 | public ?string $description = null, |
||
| 13 | public ?ParameterType $type = null, |
||
| 14 | ) { |
||
| 15 | 15 | } |
|
| 16 | |||
| 17 | 11 | public function jsonSerialize(): array |
|
| 36 | } |
||
| 37 | } |
||
| 38 |