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
|
|||
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 |
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:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths