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

DaftWriteableObjectMemoryTree::ModifyDaftNestedObjectTreeInsertLooseIntoTree()   B

Complexity

Conditions 3
Paths 3

Size

Total Lines 25
Code Lines 11

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 12
CRAP Score 3

Importance

Changes 0
Metric Value
cc 3
eloc 11
nc 3
nop 3
dl 0
loc 25
ccs 12
cts 12
cp 1
crap 3
rs 8.8571
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