Completed
Pull Request — master (#1)
by Viacheslav
02:50
created

StaticFlag   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 30
Duplicated Lines 0 %

Test Coverage

Coverage 77.78%

Importance

Changes 0
Metric Value
dl 0
loc 30
ccs 7
cts 9
cp 0.7778
rs 10
c 0
b 0
f 0
wmc 4

3 Methods

Rating   Name   Duplication   Size   Complexity  
A setIsStatic() 0 4 1
A renderIsStatic() 0 6 2
A getIsStatic() 0 3 1
1
<?php
2
3
namespace Swaggest\PhpCodeBuilder\Traits;
4
5
trait StaticFlag
6
{
7
    /** @var bool */
8
    private $isStatic;
9
10 7
    private function renderIsStatic()
11
    {
12 7
        if ($this->isStatic) {
13 4
            return 'static ';
14
        } else {
15 7
            return '';
16
        }
17
    }
18
19
    /**
20
     * @return bool
21
     */
22
    public function getIsStatic()
23
    {
24
        return $this->isStatic;
25
    }
26
27
    /**
28
     * @param bool $isStatic
29
     * @return $this
30
     */
31 4
    public function setIsStatic($isStatic)
32
    {
33 4
        $this->isStatic = $isStatic;
34 4
        return $this;
35
    }
36
37
}