CalendarItemCreateOrDeleteOperationType   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 40
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 2
Bugs 0 Features 0
Metric Value
wmc 1
c 2
b 0
f 0
lcom 0
cbo 1
dl 0
loc 40
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __toString() 0 4 1
1
<?php
2
3
namespace PhpEws\DataType;
4
5
use PhpEws\DataType;
6
7
/**
8
 * Definition of the CalendarItemCreateOrDeleteOperationType type.
9
 */
10
class CalendarItemCreateOrDeleteOperationType extends DataType
11
{
12
    /**
13
     * Send to no recipients.
14
     *
15
     * @var string
16
     */
17
    const SEND_TO_NONE = 'SendToNone';
18
19
    /**
20
     * Send to all recipients but do not save a copy.
21
     *
22
     * @var string
23
     */
24
    const SEND_ONLY_TO_ALL = 'SendOnlyToAll';
25
26
    /**
27
     * Send to all recipients and save a copy.
28
     *
29
     * @var string
30
     */
31
    const SEND_TO_ALL_AND_SAVE_COPY = 'SendToAllAndSaveCopy';
32
33
    /**
34
     * Element value.
35
     *
36
     * @var string
37
     */
38
    public $_;
39
40
    /**
41
     * Returns the value of this object as a string.
42
     *
43
     * @return string
44
     */
45
    public function __toString()
46
    {
47
        return $this->_;
48
    }
49
}
50