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
2namespace Apie\SchemaGenerator\Other;
3
4use cebe\openapi\spec\Reference;
5use cebe\openapi\spec\Schema;
6
7class 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}