OptionalParameterCollection   A
last analyzed

Complexity

Total Complexity 4

Size/Duplication

Total Lines 19
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 4
lcom 1
cbo 1
dl 0
loc 19
ccs 6
cts 6
cp 1
rs 10
c 0
b 0
f 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
A getParameters() 0 4 1
A hasParameters() 0 4 1
A getNormalizedParameters() 0 4 2
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Aweapi\Openapi\Objects\Properties;
6
7
use Aweapi\Openapi\Objects\ParameterCollection;
8
9
trait OptionalParameterCollection
10
{
11
    private $parameters;
12
13 4
    public function getParameters(): ParameterCollection
14
    {
15 4
        return $this->parameters;
16
    }
17
18 18
    public function hasParameters(): bool
19
    {
20 18
        return isset($this->parameters);
21
    }
22
23 18
    private function getNormalizedParameters(): array
24
    {
25 18
        return $this->hasParameters() ? $this->getParameters()->jsonSerialize() : [];
26
    }
27
}
28