Issues (64)

src/API/Enumeration/AppointmentState.php (1 issue)

Labels
Severity
1
<?php
2
/**
3
 * Contains \garethp\ews\API\Enumeration\AppointmentState.
4
 */
5
6
namespace garethp\ews\API\Enumeration;
7
8
/**
9
 * Specifies the status of the appointment.
10
 *
11
 * @package php-ews\Enumeration
12
 */
13
class AppointmentState extends Enumeration
0 ignored issues
show
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
     * This appointment has been canceled.
17
     *
18
     * @since Exchange 2007
19
     *
20
     * @var string
21
     */
22
    const CANCELED = 4;
23
24
    /**
25
     * This appointment was forwarded.
26
     *
27
     * @since Exchange 2007
28
     *
29
     * @var string
30
     */
31
    const FORWARD = 8;
32
33
    /**
34
     * This appointment is a meeting.
35
     *
36
     * @since Exchange 2007
37
     *
38
     * @var string
39
     */
40
    const MEETING = 1;
41
42
    /**
43
     * No flags have been set.
44
     *
45
     * This is only used for an appointment that does not include attendees.
46
     *
47
     * @since Exchange 2007
48
     *
49
     * @var string
50
     */
51
    const NONE = 0;
52
53
    /**
54
     * This appointment has been received.
55
     *
56
     * @since Exchange 2007
57
     *
58
     * @var string
59
     */
60
    const RECEIVED = 2;
61
}
62