Completed
Push — master ( af0e01...ad0952 )
by Alec
02:36
created

GettableName::default()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 1
dl 0
loc 3
ccs 0
cts 2
cp 0
crap 2
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * User: alec
4
 * Date: 30.11.18
5
 * Time: 18:06
6
 */
7
8
namespace AlecRabbit\Traits;
9
10
11
trait GettableName
12
{
13
    /** @var string */
14
    protected $name;
15
16
    /**
17
     * @return string
18
     */
19
    public function getName(): string
20
    {
21
        return $this->name;
22
    }
23
24
    /**
25
     * @param string|null $name
26
     * @return string
27
     */
28
    public function default(?string $name = null): string
29
    {
30
        return $name ?? 'default_name';
31
    }
32
33
}