OptionalSecurityRequirements   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 getSecurity() 0 4 1
A hasSecurity() 0 4 1
A getNormalizedSecurity() 0 4 2
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Aweapi\Openapi\Objects\Properties;
6
7
use Aweapi\Openapi\Objects\SecurityRequirementCollection;
8
9
trait OptionalSecurityRequirements
10
{
11
    private $security;
12
13 4
    public function getSecurity(): SecurityRequirementCollection
14
    {
15 4
        return $this->security;
16
    }
17
18 10
    public function hasSecurity(): bool
19
    {
20 10
        return isset($this->security);
21
    }
22
23 10
    private function getNormalizedSecurity(): array
24
    {
25 10
        return $this->hasSecurity() ? $this->getSecurity()->jsonSerialize() : [];
26
    }
27
}
28