Issues (104)

src/Spec/LinkObject.php (7 issues)

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
The trait Apie\OpenapiSchema\Conce...alueObjectWithExtension requires the property $name which is not provided by Apie\OpenapiSchema\Spec\LinkObject.
Loading history...
13
14
    /**
15
     * @var string|null
16
     */
17
    private $operationRef;
0 ignored issues
show
The private property $operationRef is not used, and could be removed.
Loading history...
18
19
    /**
20
     * @var string|null
21
     */
22
    private $operationId;
0 ignored issues
show
The private property $operationId is not used, and could be removed.
Loading history...
23
24
    /**
25
     * @var ParameterList|null
26
     */
27
    private $parameters;
0 ignored issues
show
The private property $parameters is not used, and could be removed.
Loading history...
28
29
    /**
30
     * @var string|null
31
     */
32
    private $requestBody;
0 ignored issues
show
The private property $requestBody is not used, and could be removed.
Loading history...
33
34
    /**
35
     * @var string|null
36
     */
37
    private $description;
0 ignored issues
show
The private property $description is not used, and could be removed.
Loading history...
38
39
    /**
40
     * @var Server|null
41
     */
42
    private $server;
0 ignored issues
show
The private property $server is not used, and could be removed.
Loading history...
43
}
44