Completed
Push — master ( 126036...3fa63d )
by Maik
07:56
created

OrmUtil::isPrimitive()   B

Complexity

Conditions 6
Paths 6

Size

Total Lines 16
Code Lines 11

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 10
CRAP Score 6

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 16
ccs 10
cts 10
cp 1
rs 8.8571
cc 6
eloc 11
nc 6
nop 1
crap 6
1
<?php
2
namespace Nkey\Caribu\Orm;
3
4
trait OrmUtil
5
{
6
    /**
7
     * Include exception handling related functionality
8
     */
9
    use OrmExceptionHandler;
10
    
11
    /**
12
     * Include class utility functionality
13
     */
14
    use OrmClassUtil;
15
    
16
    /**
17
     * Include type utility functionality
18 27
     */
19
    use OrmTypeUtil;
20
}
21