Issues (64)

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

Labels
Severity
1
<?php
2
/**
3
 * Contains \garethp\ews\API\Enumeration\ExternalAudience.
4
 */
5
6
namespace garethp\ews\API\Enumeration;
7
8
/**
9
 * Identifies to whom external Out of Office (OOF) messages are sent..
10
 *
11
 * @package php-ews\Enumeration
12
 */
13
class ExternalAudience 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
     * E-mail senders outside the mailbox user's organization who send messages
17
     * to the user will receive an external OOF message response..
18
     *
19
     * @since Exchange 2007
20
     *
21
     * @var string
22
     */
23
    const ALL = 'All';
24
25
    /**
26
     * E-mail senders outside the mailbox user's organization who send messages
27
     * to the user will only receive an external OOF message response if the
28
     * sender is in the user's Exchange store contact list.
29
     *
30
     * @since Exchange 2007
31
     *
32
     * @var string
33
     */
34
    const KNOWN = 'Known';
35
36
    /**
37
     * E-mail senders outside the mailbox user's organization who send messages
38
     * to the user will not receive an external OOF message response.
39
     *
40
     * @since Exchange 2007
41
     *
42
     * @var string
43
     */
44
    const NONE = 'None';
45
}
46