Completed
Push — php-7.1 ( d2218e...926e65 )
by SignpostMarv
08:16
created

BaseComplexType::addAttributeFromAttributeOrRef()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 14
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 7
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 6
c 0
b 0
f 0
nc 1
nop 4
dl 0
loc 14
ccs 7
cts 7
cp 1
crap 1
rs 9.4285
1
<?php
2
3
declare(strict_types=1);
4
5
namespace GoetasWebservices\XML\XSDReader\Schema\Type;
6
7
use GoetasWebservices\XML\XSDReader\Schema\Attribute\AttributeContainer;
8
use GoetasWebservices\XML\XSDReader\Schema\Attribute\AttributeContainerTrait;
9
10
abstract class BaseComplexType extends Type implements AttributeContainer
11
{
12
    use AttributeContainerTrait;
13
}
14