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