Total Complexity | 2 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
19 | final class RequestBody |
||
20 | { |
||
21 | |||
22 | /** |
||
23 | * @var string |
||
24 | */ |
||
25 | public $description = ''; |
||
26 | |||
27 | /** |
||
28 | * @Required |
||
29 | * |
||
30 | * @var array<Sunrise\Http\Router\Annotation\OpenApi\MediaType> |
||
31 | */ |
||
32 | public $content = []; |
||
33 | |||
34 | /** |
||
35 | * @var bool |
||
36 | */ |
||
37 | public $required = false; |
||
38 | |||
39 | /** |
||
40 | * @return array |
||
41 | */ |
||
42 | public function toArray() : array |
||
56 |