1 | <?php |
||
10 | class KindType extends DataType |
||
11 | { |
||
12 | /** |
||
13 | * Specifies that the time zone transition target is a time zone period. |
||
14 | * |
||
15 | * @var string |
||
16 | */ |
||
17 | const PERIOD = 'Period'; |
||
18 | |||
19 | /** |
||
20 | * Specifies that the time zone transition target is a group of time zone |
||
21 | * transitions. |
||
22 | * |
||
23 | * @var string |
||
24 | */ |
||
25 | const GROUP = 'Group'; |
||
26 | |||
27 | /** |
||
28 | * Element value. |
||
29 | * |
||
30 | * @var string |
||
31 | */ |
||
32 | public $_; |
||
33 | |||
34 | /** |
||
35 | * Returns the value of this object as a string. |
||
36 | * |
||
37 | * @return string |
||
38 | */ |
||
39 | public function __toString() |
||
43 | } |
||
44 |