Passed
Push — master ( 88bba2...d6ea6c )
by SignpostMarv
03:11
created

DaftWriteableObjectMemoryTree::ModifyDaftNestedObjectTreeInsertLoose()   B

Complexity

Conditions 6
Paths 3

Size

Total Lines 28
Code Lines 13

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 13
CRAP Score 6

Importance

Changes 0
Metric Value
cc 6
eloc 13
nc 3
nop 4
dl 0
loc 28
ccs 13
cts 13
cp 1
crap 6
rs 8.439
c 0
b 0
f 0
1
<?php
2
/**
3
* Base daft objects.
4
*
5
* @author SignpostMarv
6
*/
7
declare(strict_types=1);
8
9
namespace SignpostMarv\DaftObject;
10
11
abstract class DaftWriteableObjectMemoryTree extends DaftObjectMemoryTree implements DaftNestedWriteableObjectTree
12
{
13
    use TraitWriteableTree;
14
}
15