OofState
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 29
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 29
c 0
b 0
f 0
wmc 0
1
<?php
2
/**
3
 * Contains \garethp\ews\API\Enumeration\OofState.
4
 */
5
6
namespace garethp\ews\API\Enumeration;
7
8
/**
9
 * Represents a user's Out of Office (OOF) state.
10
 *
11
 * @package php-ews\Enumeration
12
 */
13
class OofState 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 user's OOF setting is currently disabled.
17
     *
18
     * @since Exchange 2007
19
     *
20
     * @var string
21
     */
22
    const DISABLED = 'Disabled';
23
24
    /**
25
     * The user's OOF setting is currently enabled.
26
     *
27
     * @since Exchange 2007
28
     *
29
     * @var string
30
     */
31
    const ENABLED = 'Enabled';
32
33
    /**
34
     * The user's OOF setting is scheduled to start at a specific date and end
35
     * at another specific date.
36
     *
37
     * @since Exchange 2007
38
     *
39
     * @var string
40
     */
41
    const SCHEDULED = 'Scheduled';
42
}
43