TraitDefinition::hasProperties()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
ccs 2
cts 2
cp 1
crap 1
rs 10
c 0
b 0
f 0
1
<?php declare(strict_types=1);
2
/**
3
 * This source file is subject to the license that is bundled with this package in the file LICENSE.
4
 */
5
6
namespace PhUml\Code;
7
8
use PhUml\Code\Methods\Method;
9
use PhUml\Code\Properties\HasProperties;
10
use PhUml\Code\Properties\Property;
11
use PhUml\Code\Properties\WithProperties;
12
13
final class TraitDefinition extends Definition implements HasProperties, UseTraits
14
{
15
    use WithProperties;
16
    use WithTraits;
17
18
    /**
19
     * @param Method[] $methods
20
     * @param Property[] $properties
21
     * @param Name[] $traits
22
     */
23 38
    public function __construct(
24
        Name $name,
25
        array $methods = [],
26
        array $properties = [],
27
        array $traits = []
28
    ) {
29 38
        parent::__construct($name, $methods);
30 38
        $this->properties = $properties;
31 38
        $this->traits = $traits;
32
    }
33
34 13
    public function hasProperties(): bool
35
    {
36 13
        return $this->properties !== [];
37
    }
38
}
39