1 | <?php |
||
24 | abstract class AbstractField extends Annotation |
||
25 | { |
||
26 | public $name; |
||
27 | public $type = 'string'; |
||
28 | public $nullable = false; |
||
29 | public $options = array(); |
||
30 | public $strategy; |
||
31 | |||
32 | /** |
||
33 | * Gets deprecation message. The method *WILL* be removed in 2.0. |
||
34 | * |
||
35 | * @return string |
||
36 | * |
||
37 | * @internal |
||
38 | */ |
||
39 | public function getDeprecationMessage() |
||
43 | |||
44 | /** |
||
45 | * Gets whether the annotation is deprecated. The method *WILL* be removed in 2.0. |
||
46 | * |
||
47 | * @return bool |
||
48 | * |
||
49 | * @internal |
||
50 | */ |
||
51 | 899 | public function isDeprecated() |
|
55 | } |
||
56 |