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

Type::buildArrayFromArray()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 7
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 4
CRAP Score 2

Importance

Changes 0
Metric Value
cc 2
eloc 3
nc 2
nop 1
dl 0
loc 7
ccs 4
cts 4
cp 1
crap 2
rs 10
c 0
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