StaticFlag::getIsStatic()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
ccs 0
cts 2
cp 0
crap 2
rs 10
c 1
b 0
f 0
1
<?php
2
3
namespace Swaggest\PhpCodeBuilder\Traits;
4
5
trait StaticFlag
6
{
7
    /** @var bool */
8
    private $isStatic;
9
10 14
    private function renderIsStatic()
11
    {
12 14
        if ($this->isStatic) {
13 11
            return 'static ';
14
        } else {
15 14
            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 11
    public function setIsStatic($isStatic)
32
    {
33 11
        $this->isStatic = $isStatic;
34 11
        return $this;
35
    }
36
37
}