Passed
Push — master ( 474b60...e69b5a )
by Gareth
02:14
created

Type::getNonNullItems()   A

Complexity

Conditions 6
Paths 6

Size

Total Lines 15
Code Lines 7

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 8
CRAP Score 6

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 6
eloc 7
nc 6
nop 1
dl 0
loc 15
ccs 8
cts 8
cp 1
crap 6
rs 9.2222
c 1
b 0
f 0
1
<?php
2
/**
3
 * Contains \garethp\ews\API\Type.
4
 */
5
6
namespace garethp\ews\API;
7
8
use garethp\ews\BuildableTrait;
9
10
/**
11
 * Base class for Exchange Web Service Types.
12
 *
13
 * @package php-ews\Type
14
 */
15
#[\AllowDynamicProperties]
16
class Type
17
{
18
    use MagicMethodsTrait;
0 ignored issues
show
Bug introduced by
The trait garethp\ews\API\MagicMethodsTrait requires the property $Entry which is not provided by garethp\ews\API\Type.
Loading history...
19
    use BuildableTrait;
20
}
21