@@ -37,52 +37,52 @@ class Type
37
37
Parent = 'parent ' ,
38
38
Static = 'static ' ;
39
39
40
- /** @deprecated use Type::String */
40
+ #[\Deprecated( ' use Type::String ' )]
41
41
public const STRING = self ::String;
42
42
43
- /** @deprecated use Type::Int */
43
+ #[\Deprecated( ' use Type::Int ' )]
44
44
public const INT = self ::Int;
45
45
46
- /** @deprecated use Type::Float */
46
+ #[\Deprecated( ' use Type::Float ' )]
47
47
public const FLOAT = self ::Float;
48
48
49
- /** @deprecated use Type::Bool */
49
+ #[\Deprecated( ' use Type::Bool ' )]
50
50
public const BOOL = self ::Bool;
51
51
52
- /** @deprecated use Type::Array */
52
+ #[\Deprecated( ' use Type::Array ' )]
53
53
public const ARRAY = self ::Array;
54
54
55
- /** @deprecated use Type::Object */
55
+ #[\Deprecated( ' use Type::Object ' )]
56
56
public const OBJECT = self ::Object;
57
57
58
- /** @deprecated use Type::Callable */
58
+ #[\Deprecated( ' use Type::Callable ' )]
59
59
public const CALLABLE = self ::Callable;
60
60
61
- /** @deprecated use Type::Iterable */
61
+ #[\Deprecated( ' use Type::Iterable ' )]
62
62
public const ITERABLE = self ::Iterable;
63
63
64
- /** @deprecated use Type::Void */
64
+ #[\Deprecated( ' use Type::Void ' )]
65
65
public const VOID = self ::Void;
66
66
67
- /** @deprecated use Type::Never */
67
+ #[\Deprecated( ' use Type::Never ' )]
68
68
public const NEVER = self ::Never;
69
69
70
- /** @deprecated use Type::Mixed */
70
+ #[\Deprecated( ' use Type::Mixed ' )]
71
71
public const MIXED = self ::Mixed;
72
72
73
- /** @deprecated use Type::False */
73
+ #[\Deprecated( ' use Type::False ' )]
74
74
public const FALSE = self ::False;
75
75
76
- /** @deprecated use Type::Null */
76
+ #[\Deprecated( ' use Type::Null ' )]
77
77
public const NULL = self ::Null;
78
78
79
- /** @deprecated use Type::Self */
79
+ #[\Deprecated( ' use Type::Self ' )]
80
80
public const SELF = self ::Self;
81
81
82
- /** @deprecated use Type::Parent */
82
+ #[\Deprecated( ' use Type::Parent ' )]
83
83
public const PARENT = self ::Parent;
84
84
85
- /** @deprecated use Type::Static */
85
+ #[\Deprecated( ' use Type::Static ' )]
86
86
public const STATIC = self ::Static;
87
87
88
88
0 commit comments