Skip to content

Commit 5dced41

Browse files
committed
Introduce isDeprecated to CallableParametersAcceptor
1 parent 5f0b1cc commit 5dced41

11 files changed

+53
-0
lines changed

src/Reflection/CallableFunctionVariantWithPhpDocs.php

+6
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ public function __construct(
3232
?TemplateTypeVarianceMap $callSiteVarianceMap,
3333
private array $throwPoints,
3434
private TrinaryLogic $isPure,
35+
private TrinaryLogic $isDeprecated,
3536
private array $impurePoints,
3637
private array $invalidateExpressions,
3738
private array $usedVariables,
@@ -60,6 +61,11 @@ public function isPure(): TrinaryLogic
6061
return $this->isPure;
6162
}
6263

64+
public function isDeprecated(): TrinaryLogic
65+
{
66+
return $this->isDeprecated;
67+
}
68+
6369
public function getImpurePoints(): array
6470
{
6571
return $this->impurePoints;

src/Reflection/Callables/CallableParametersAcceptor.php

+2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ public function getThrowPoints(): array;
1919

2020
public function isPure(): TrinaryLogic;
2121

22+
public function isDeprecated(): TrinaryLogic;
23+
2224
public function acceptsNamedArguments(): bool;
2325

2426
/**

src/Reflection/Callables/FunctionCallableVariant.php

+5
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,11 @@ public function isPure(): TrinaryLogic
135135
return $certainCount > 0 ? TrinaryLogic::createNo() : TrinaryLogic::createMaybe();
136136
}
137137

138+
public function isDeprecated(): TrinaryLogic
139+
{
140+
return $this->function->isDeprecated();
141+
}
142+
138143
public function getImpurePoints(): array
139144
{
140145
if ($this->impurePoints !== null) {

src/Reflection/GenericParametersAcceptorResolver.php

+1
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ public static function resolve(array $argTypes, ParametersAcceptor $parametersAc
123123
$result,
124124
$originalParametersAcceptor->getThrowPoints(),
125125
$originalParametersAcceptor->isPure(),
126+
$originalParametersAcceptor->isDeprecated(),
126127
$originalParametersAcceptor->getImpurePoints(),
127128
$originalParametersAcceptor->getInvalidateExpressions(),
128129
$originalParametersAcceptor->getUsedVariables(),

src/Reflection/InaccessibleMethod.php

+5
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,11 @@ public function isPure(): TrinaryLogic
6565
return TrinaryLogic::createMaybe();
6666
}
6767

68+
public function isDeprecated(): TrinaryLogic
69+
{
70+
return $this->methodReflection->isDeprecated();
71+
}
72+
6873
public function getImpurePoints(): array
6974
{
7075
return [

src/Reflection/ParametersAcceptorSelector.php

+4
Original file line numberDiff line numberDiff line change
@@ -635,6 +635,7 @@ public static function combineAcceptors(array $acceptors): ParametersAcceptorWit
635635
$callableOccurred = false;
636636
$throwPoints = [];
637637
$isPure = TrinaryLogic::createNo();
638+
$isDeprecated = TrinaryLogic::createNo();
638639
$impurePoints = [];
639640
$invalidateExpressions = [];
640641
$usedVariables = [];
@@ -651,6 +652,7 @@ public static function combineAcceptors(array $acceptors): ParametersAcceptorWit
651652
$callableOccurred = true;
652653
$throwPoints = array_merge($throwPoints, $acceptor->getThrowPoints());
653654
$isPure = $isPure->or($acceptor->isPure());
655+
$isDeprecated = $isDeprecated->or($acceptor->isDeprecated());
654656
$impurePoints = array_merge($impurePoints, $acceptor->getImpurePoints());
655657
$invalidateExpressions = array_merge($invalidateExpressions, $acceptor->getInvalidateExpressions());
656658
$usedVariables = array_merge($usedVariables, $acceptor->getUsedVariables());
@@ -753,6 +755,7 @@ public static function combineAcceptors(array $acceptors): ParametersAcceptorWit
753755
null,
754756
$throwPoints,
755757
$isPure,
758+
$isDeprecated,
756759
$impurePoints,
757760
$invalidateExpressions,
758761
$usedVariables,
@@ -789,6 +792,7 @@ private static function wrapAcceptor(ParametersAcceptor $acceptor): ParametersAc
789792
TemplateTypeVarianceMap::createEmpty(),
790793
$acceptor->getThrowPoints(),
791794
$acceptor->isPure(),
795+
$acceptor->isDeprecated(),
792796
$acceptor->getImpurePoints(),
793797
$acceptor->getInvalidateExpressions(),
794798
$acceptor->getUsedVariables(),

src/Reflection/ResolvedFunctionVariantWithCallable.php

+6
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ public function __construct(
2424
private ResolvedFunctionVariant $parametersAcceptor,
2525
private array $throwPoints,
2626
private TrinaryLogic $isPure,
27+
private TrinaryLogic $isDeprecated,
2728
private array $impurePoints,
2829
private array $invalidateExpressions,
2930
private array $usedVariables,
@@ -97,6 +98,11 @@ public function isPure(): TrinaryLogic
9798
return $this->isPure;
9899
}
99100

101+
public function isDeprecated(): TrinaryLogic
102+
{
103+
return $this->isDeprecated;
104+
}
105+
100106
public function getImpurePoints(): array
101107
{
102108
return $this->impurePoints;

src/Reflection/TrivialParametersAcceptor.php

+5
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,11 @@ public function isPure(): TrinaryLogic
7373
return TrinaryLogic::createMaybe();
7474
}
7575

76+
public function isDeprecated(): TrinaryLogic
77+
{
78+
return TrinaryLogic::createNo();
79+
}
80+
7681
public function getImpurePoints(): array
7782
{
7883
return [

src/Rules/RuleLevelHelper.php

+1
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ private function transformAcceptedType(Type $acceptingType, Type $acceptedType):
106106
$acceptedType->getResolvedTemplateTypeMap(),
107107
$acceptedType->getTemplateTags(),
108108
$acceptedType->isPure(),
109+
$acceptedType->isDeprecated(),
109110
);
110111
}
111112

src/Type/CallableType.php

+13
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@ class CallableType implements CompoundType, CallableParametersAcceptor
6565

6666
private TrinaryLogic $isPure;
6767

68+
private TrinaryLogic $isDeprecated;
69+
6870
/**
6971
* @api
7072
* @param array<int, ParameterReflection>|null $parameters
@@ -78,6 +80,7 @@ public function __construct(
7880
?TemplateTypeMap $resolvedTemplateTypeMap = null,
7981
private array $templateTags = [],
8082
?TrinaryLogic $isPure = null,
83+
?TrinaryLogic $isDeprecated = null,
8184
)
8285
{
8386
$this->parameters = $parameters ?? [];
@@ -86,6 +89,7 @@ public function __construct(
8689
$this->templateTypeMap = $templateTypeMap ?? TemplateTypeMap::createEmpty();
8790
$this->resolvedTemplateTypeMap = $resolvedTemplateTypeMap ?? TemplateTypeMap::createEmpty();
8891
$this->isPure = $isPure ?? TrinaryLogic::createMaybe();
92+
$this->isDeprecated = $isDeprecated ?? TrinaryLogic::createNo();
8993
}
9094

9195
/**
@@ -101,6 +105,11 @@ public function isPure(): TrinaryLogic
101105
return $this->isPure;
102106
}
103107

108+
public function isDeprecated(): TrinaryLogic
109+
{
110+
return $this->isDeprecated;
111+
}
112+
104113
/**
105114
* @return string[]
106115
*/
@@ -254,6 +263,7 @@ function (): string {
254263
$this->resolvedTemplateTypeMap,
255264
$this->templateTags,
256265
$this->isPure,
266+
$this->isDeprecated,
257267
);
258268

259269
return $printer->print($selfWithoutParameterNames->toPhpDocNode());
@@ -468,6 +478,7 @@ public function traverse(callable $cb): Type
468478
$this->resolvedTemplateTypeMap,
469479
$this->templateTags,
470480
$this->isPure,
481+
$this->isDeprecated,
471482
);
472483
}
473484

@@ -518,6 +529,7 @@ public function traverseSimultaneously(Type $right, callable $cb): Type
518529
$this->resolvedTemplateTypeMap,
519530
$this->templateTags,
520531
$this->isPure,
532+
$this->isDeprecated,
521533
);
522534
}
523535

@@ -703,6 +715,7 @@ public static function __set_state(array $properties): Type
703715
$properties['resolvedTemplateTypeMap'],
704716
$properties['templateTags'],
705717
$properties['isPure'],
718+
$properties['isDeprecated'],
706719
);
707720
}
708721

src/Type/ClosureType.php

+5
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,11 @@ public function isPure(): TrinaryLogic
143143
return $certainCount > 0 ? TrinaryLogic::createNo() : TrinaryLogic::createMaybe();
144144
}
145145

146+
public function isDeprecated(): TrinaryLogic
147+
{
148+
return TrinaryLogic::createNo();
149+
}
150+
146151
public function getClassName(): string
147152
{
148153
return $this->objectType->getClassName();

0 commit comments

Comments
 (0)