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

OptionalUrl   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Test Coverage

Coverage 100%

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A hasUrl() 0 4 1
A getNormalizedUrl() 0 4 2
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Aweapi\Openapi\Objects\Properties;
6
7
trait OptionalUrl
8
{
9
    use Url;
10
11 5
    public function hasUrl(): bool
12
    {
13 5
        return isset($this->url);
14
    }
15
16 5
    private function getNormalizedUrl(): ?string
17
    {
18 5
        return $this->hasUrl() ? $this->getUrl() : null;
19
    }
20
}
21