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

Type::arrayIsAssoc()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

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