@@ -37,52 +37,52 @@ class Type
3737 Parent = 'parent ' ,
3838 Static = 'static ' ;
3939
40- /** @deprecated use Type::String */
40+ #[\Deprecated( ' use Type::String ' )]
4141 public const STRING = self ::String;
4242
43- /** @deprecated use Type::Int */
43+ #[\Deprecated( ' use Type::Int ' )]
4444 public const INT = self ::Int;
4545
46- /** @deprecated use Type::Float */
46+ #[\Deprecated( ' use Type::Float ' )]
4747 public const FLOAT = self ::Float;
4848
49- /** @deprecated use Type::Bool */
49+ #[\Deprecated( ' use Type::Bool ' )]
5050 public const BOOL = self ::Bool;
5151
52- /** @deprecated use Type::Array */
52+ #[\Deprecated( ' use Type::Array ' )]
5353 public const ARRAY = self ::Array;
5454
55- /** @deprecated use Type::Object */
55+ #[\Deprecated( ' use Type::Object ' )]
5656 public const OBJECT = self ::Object;
5757
58- /** @deprecated use Type::Callable */
58+ #[\Deprecated( ' use Type::Callable ' )]
5959 public const CALLABLE = self ::Callable;
6060
61- /** @deprecated use Type::Iterable */
61+ #[\Deprecated( ' use Type::Iterable ' )]
6262 public const ITERABLE = self ::Iterable;
6363
64- /** @deprecated use Type::Void */
64+ #[\Deprecated( ' use Type::Void ' )]
6565 public const VOID = self ::Void;
6666
67- /** @deprecated use Type::Never */
67+ #[\Deprecated( ' use Type::Never ' )]
6868 public const NEVER = self ::Never;
6969
70- /** @deprecated use Type::Mixed */
70+ #[\Deprecated( ' use Type::Mixed ' )]
7171 public const MIXED = self ::Mixed;
7272
73- /** @deprecated use Type::False */
73+ #[\Deprecated( ' use Type::False ' )]
7474 public const FALSE = self ::False;
7575
76- /** @deprecated use Type::Null */
76+ #[\Deprecated( ' use Type::Null ' )]
7777 public const NULL = self ::Null;
7878
79- /** @deprecated use Type::Self */
79+ #[\Deprecated( ' use Type::Self ' )]
8080 public const SELF = self ::Self;
8181
82- /** @deprecated use Type::Parent */
82+ #[\Deprecated( ' use Type::Parent ' )]
8383 public const PARENT = self ::Parent;
8484
85- /** @deprecated use Type::Static */
85+ #[\Deprecated( ' use Type::Static ' )]
8686 public const STATIC = self ::Static;
8787
8888
0 commit comments