1 | <?php |
||
2 | |||
3 | |||
4 | namespace Apie\OpenapiSchema\Spec; |
||
5 | |||
6 | use Apie\OpenapiSchema\Concerns\CompositeValueObjectWithExtension; |
||
7 | use Apie\OpenapiSchema\Map\ParameterList; |
||
8 | use Apie\ValueObjects\ValueObjectInterface; |
||
9 | |||
10 | class LinkObject implements ValueObjectInterface |
||
11 | { |
||
12 | use CompositeValueObjectWithExtension; |
||
0 ignored issues
–
show
Bug
introduced
by
![]() |
|||
13 | |||
14 | /** |
||
15 | * @var string|null |
||
16 | */ |
||
17 | private $operationRef; |
||
0 ignored issues
–
show
|
|||
18 | |||
19 | /** |
||
20 | * @var string|null |
||
21 | */ |
||
22 | private $operationId; |
||
0 ignored issues
–
show
|
|||
23 | |||
24 | /** |
||
25 | * @var ParameterList|null |
||
26 | */ |
||
27 | private $parameters; |
||
0 ignored issues
–
show
|
|||
28 | |||
29 | /** |
||
30 | * @var string|null |
||
31 | */ |
||
32 | private $requestBody; |
||
0 ignored issues
–
show
|
|||
33 | |||
34 | /** |
||
35 | * @var string|null |
||
36 | */ |
||
37 | private $description; |
||
0 ignored issues
–
show
|
|||
38 | |||
39 | /** |
||
40 | * @var Server|null |
||
41 | */ |
||
42 | private $server; |
||
0 ignored issues
–
show
|
|||
43 | } |
||
44 |