Scope
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 28
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 28
c 0
b 0
f 0
wmc 0
1
<?php
2
/**
3
 * Contains \garethp\ews\API\Enumeration\Scope.
4
 */
5
6
namespace garethp\ews\API\Enumeration;
7
8
/**
9
 * Defines the scope of a message tracking report.
10
 *
11
 * @package php-ews\Enumeration
12
 */
13
class Scope extends Enumeration
0 ignored issues
show
Bug introduced by
The type garethp\ews\API\Enumeration\Enumeration was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
14
{
15
    /**
16
     * The message tracking scopes spans across a forest.
17
     *
18
     * @since Exchange 2010
19
     *
20
     * @var string
21
     */
22
    const FOREST = 'Forest';
23
24
    /**
25
     * The message tracking scopes spans across an organization.
26
     *
27
     * @since Exchange 2010
28
     *
29
     * @var string
30
     */
31
    const ORGANIZATION = 'Organization';
32
33
    /**
34
     * The message tracking scopes spans across a site.
35
     *
36
     * @since Exchange 2010
37
     *
38
     * @var string
39
     */
40
    const SITE = 'Site';
41
}
42