@@ -65,6 +65,8 @@ class CallableType implements CompoundType, CallableParametersAcceptor
65
65
66
66
private TrinaryLogic $ isPure ;
67
67
68
+ private TrinaryLogic $ isDeprecated ;
69
+
68
70
/**
69
71
* @api
70
72
* @param array<int, ParameterReflection>|null $parameters
@@ -78,6 +80,7 @@ public function __construct(
78
80
?TemplateTypeMap $ resolvedTemplateTypeMap = null ,
79
81
private array $ templateTags = [],
80
82
?TrinaryLogic $ isPure = null ,
83
+ ?TrinaryLogic $ isDeprecated = null ,
81
84
)
82
85
{
83
86
$ this ->parameters = $ parameters ?? [];
@@ -86,6 +89,7 @@ public function __construct(
86
89
$ this ->templateTypeMap = $ templateTypeMap ?? TemplateTypeMap::createEmpty ();
87
90
$ this ->resolvedTemplateTypeMap = $ resolvedTemplateTypeMap ?? TemplateTypeMap::createEmpty ();
88
91
$ this ->isPure = $ isPure ?? TrinaryLogic::createMaybe ();
92
+ $ this ->isDeprecated = $ isDeprecated ?? TrinaryLogic::createNo ();
89
93
}
90
94
91
95
/**
@@ -101,6 +105,11 @@ public function isPure(): TrinaryLogic
101
105
return $ this ->isPure ;
102
106
}
103
107
108
+ public function isDeprecated (): TrinaryLogic
109
+ {
110
+ return $ this ->isDeprecated ;
111
+ }
112
+
104
113
/**
105
114
* @return string[]
106
115
*/
@@ -254,6 +263,7 @@ function (): string {
254
263
$ this ->resolvedTemplateTypeMap ,
255
264
$ this ->templateTags ,
256
265
$ this ->isPure ,
266
+ $ this ->isDeprecated ,
257
267
);
258
268
259
269
return $ printer ->print ($ selfWithoutParameterNames ->toPhpDocNode ());
@@ -468,6 +478,7 @@ public function traverse(callable $cb): Type
468
478
$ this ->resolvedTemplateTypeMap ,
469
479
$ this ->templateTags ,
470
480
$ this ->isPure ,
481
+ $ this ->isDeprecated ,
471
482
);
472
483
}
473
484
@@ -518,6 +529,7 @@ public function traverseSimultaneously(Type $right, callable $cb): Type
518
529
$ this ->resolvedTemplateTypeMap ,
519
530
$ this ->templateTags ,
520
531
$ this ->isPure ,
532
+ $ this ->isDeprecated ,
521
533
);
522
534
}
523
535
@@ -703,6 +715,7 @@ public static function __set_state(array $properties): Type
703
715
$ properties ['resolvedTemplateTypeMap ' ],
704
716
$ properties ['templateTags ' ],
705
717
$ properties ['isPure ' ],
718
+ $ properties ['isDeprecated ' ],
706
719
);
707
720
}
708
721
0 commit comments