@@ -79,6 +79,8 @@ class ClosureType implements TypeWithClassName, CallableParametersAcceptor
79
79
80
80
private TrinaryLogic $ acceptsNamedArguments ;
81
81
82
+ private TrinaryLogic $ isDeprecated ;
83
+
82
84
/**
83
85
* @api
84
86
* @param list<ParameterReflection>|null $parameters
@@ -101,6 +103,7 @@ public function __construct(
101
103
private array $ invalidateExpressions = [],
102
104
private array $ usedVariables = [],
103
105
?TrinaryLogic $ acceptsNamedArguments = null ,
106
+ ?TrinaryLogic $ isDeprecated = null ,
104
107
)
105
108
{
106
109
if ($ acceptsNamedArguments === null ) {
@@ -116,6 +119,7 @@ public function __construct(
116
119
$ this ->resolvedTemplateTypeMap = $ resolvedTemplateTypeMap ?? TemplateTypeMap::createEmpty ();
117
120
$ this ->callSiteVarianceMap = $ callSiteVarianceMap ?? TemplateTypeVarianceMap::createEmpty ();
118
121
$ this ->impurePoints = $ impurePoints ?? [new SimpleImpurePoint ('functionCall ' , 'call to an unknown Closure ' , false )];
122
+ $ this ->isDeprecated = $ isDeprecated ?? TrinaryLogic::createNo ();
119
123
}
120
124
121
125
/**
@@ -150,6 +154,11 @@ public function isPure(): TrinaryLogic
150
154
return $ certainCount > 0 ? TrinaryLogic::createNo () : TrinaryLogic::createMaybe ();
151
155
}
152
156
157
+ public function isDeprecated (): TrinaryLogic
158
+ {
159
+ return $ this ->isDeprecated ;
160
+ }
161
+
153
162
public function getClassName (): string
154
163
{
155
164
return $ this ->objectType ->getClassName ();
@@ -262,6 +271,7 @@ function (): string {
262
271
$ this ->impurePoints ,
263
272
$ this ->invalidateExpressions ,
264
273
$ this ->usedVariables ,
274
+ $ this ->isDeprecated ,
265
275
);
266
276
267
277
return $ printer ->print ($ selfWithoutParameterNames ->toPhpDocNode ());
@@ -584,6 +594,7 @@ public function traverse(callable $cb): Type
584
594
$ this ->invalidateExpressions ,
585
595
$ this ->usedVariables ,
586
596
$ this ->acceptsNamedArguments ,
597
+ $ this ->isDeprecated ,
587
598
);
588
599
}
589
600
@@ -634,6 +645,7 @@ public function traverseSimultaneously(Type $right, callable $cb): Type
634
645
$ this ->invalidateExpressions ,
635
646
$ this ->usedVariables ,
636
647
$ this ->acceptsNamedArguments ,
648
+ $ this ->isDeprecated ,
637
649
);
638
650
}
639
651
0 commit comments