Issues (64)

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

Labels
Severity
1
<?php
2
/**
3
 * Contains \garethp\ews\API\Enumeration\ReminderGroup.
4
 */
5
6
namespace garethp\ews\API\Enumeration;
7
8
/**
9
 * Defines whether the reminder is for a calendar item or a task.
10
 *
11
 * @package php-ews\Enumeration
12
 */
13
class ReminderGroup 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
     * Specifies that the reminder is for a calendar item.
17
     *
18
     * @since Exchange 2013
19
     *
20
     * @var string
21
     */
22
    const CALENDAR = 'Calendar';
23
24
    /**
25
     * Specifies that the reminder is for a task item.
26
     *
27
     * @since Exchange 2013
28
     *
29
     * @var string
30
     */
31
    const TASK = 'Task';
32
}
33