1 | <?php |
||
13 | class Enumeration extends Type |
||
14 | { |
||
15 | /** |
||
16 | * Element value. |
||
17 | * |
||
18 | * @deprecated 1.0.0 |
||
19 | * This property will be removed in a future release and should not be |
||
20 | * used. Instead, you should reference the constants implemented in the |
||
21 | * class directly. |
||
22 | * |
||
23 | * @var string |
||
24 | */ |
||
25 | public $_; |
||
26 | |||
27 | /** |
||
28 | * Returns the value of this enumeration as a string.. |
||
29 | * |
||
30 | * @return string |
||
31 | * |
||
32 | * @suppress PhanDeprecatedProperty |
||
33 | */ |
||
34 | public function __toString() |
||
38 | } |
||
39 |
This property has been deprecated. The supplier of the class has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the property will be removed from the class and what other property to use instead.