SuggestionQuality
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 37
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 5
dl 0
loc 37
c 0
b 0
f 0
wmc 0
1
<?php
2
/**
3
 * Contains \garethp\ews\API\Enumeration\SuggestionQuality.
4
 */
5
6
namespace garethp\ews\API\Enumeration;
7
8
/**
9
 * Represents the quality of the day for containing quality suggested meeting
10
 * times.
11
 *
12
 * @package php-ews\Enumeration
13
 */
14
class SuggestionQuality 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...
15
{
16
    /**
17
     * Indicates that the suggested meeting time is excellent.
18
     *
19
     * @since Exchange 2007
20
     *
21
     * @var string
22
     */
23
    const EXCELLENT = 'Excellent';
24
25
    /**
26
     * Indicates that the suggested meeting time is fair.
27
     *
28
     * @since Exchange 2007
29
     *
30
     * @var string
31
     */
32
    const FAIR = 'Fair';
33
34
    /**
35
     * Indicates that the suggested meeting time is good.
36
     *
37
     * @since Exchange 2007
38
     *
39
     * @var string
40
     */
41
    const GOOD = 'Good';
42
43
    /**
44
     * Indicates that the suggested meeting time is poor.
45
     *
46
     * @since Exchange 2007
47
     *
48
     * @var string
49
     */
50
    const POOR = 'Poor';
51
}
52