Total Complexity | 4 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
19 | final class Schema |
||
20 | { |
||
21 | |||
22 | /** |
||
23 | * @var string |
||
24 | */ |
||
25 | public $ref; |
||
26 | |||
27 | /** |
||
28 | * @var string |
||
29 | */ |
||
30 | public $type; |
||
31 | |||
32 | /** |
||
33 | * @var array<Sunrise\Http\Router\Annotation\OpenApi\Property> |
||
34 | */ |
||
35 | public $properties = []; |
||
36 | |||
37 | /** |
||
38 | * @return array |
||
39 | */ |
||
40 | public function toArray() : array |
||
59 |