TraitDefinition   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 24
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 7
dl 0
loc 24
ccs 6
cts 6
cp 1
rs 10
c 1
b 0
f 0
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 9 1
A hasProperties() 0 3 1
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