Completed
Push — master ( 935a4f...80b369 )
by Veaceslav
01:53
created

OptionalExternalDocs   A

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