Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
MethodSchemaInfo | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
1 | <?php |
2 | namespace Apie\SchemaGenerator\Other; |
3 | |
4 | use cebe\openapi\spec\Reference; |
5 | use cebe\openapi\spec\Schema; |
6 | |
7 | class MethodSchemaInfo |
8 | { |
9 | /** |
10 | * @var array<int|string, Schema|Reference> |
11 | */ |
12 | public array $schemas = []; |
13 | |
14 | /** |
15 | * @var string[] |
16 | */ |
17 | public array $required = []; |
18 | } |