Garethp /
php-ews
| 1 | <?php |
||
| 2 | /** |
||
| 3 | * Contains \garethp\ews\API\Enumeration\Scope. |
||
| 4 | */ |
||
| 5 | |||
| 6 | namespace garethp\ews\API\Enumeration; |
||
| 7 | |||
| 8 | /** |
||
| 9 | * Defines the scope of a message tracking report. |
||
| 10 | * |
||
| 11 | * @package php-ews\Enumeration |
||
| 12 | */ |
||
| 13 | class Scope extends Enumeration |
||
|
0 ignored issues
–
show
|
|||
| 14 | { |
||
| 15 | /** |
||
| 16 | * The message tracking scopes spans across a forest. |
||
| 17 | * |
||
| 18 | * @since Exchange 2010 |
||
| 19 | * |
||
| 20 | * @var string |
||
| 21 | */ |
||
| 22 | const FOREST = 'Forest'; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * The message tracking scopes spans across an organization. |
||
| 26 | * |
||
| 27 | * @since Exchange 2010 |
||
| 28 | * |
||
| 29 | * @var string |
||
| 30 | */ |
||
| 31 | const ORGANIZATION = 'Organization'; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * The message tracking scopes spans across a site. |
||
| 35 | * |
||
| 36 | * @since Exchange 2010 |
||
| 37 | * |
||
| 38 | * @var string |
||
| 39 | */ |
||
| 40 | const SITE = 'Site'; |
||
| 41 | } |
||
| 42 |
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