LinkObject
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 33
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 8
c 1
b 0
f 0
dl 0
loc 33
wmc 0
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
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
introduced by
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
introduced by
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
introduced by
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
introduced by
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
introduced by
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
introduced by
The private property $server is not used, and could be removed.
Loading history...
43
}
44