forked from phpstan/phpstan-src
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClosureType.php
More file actions
914 lines (762 loc) · 23.3 KB
/
ClosureType.php
File metadata and controls
914 lines (762 loc) · 23.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
<?php declare(strict_types = 1);
namespace PHPStan\Type;
use Closure;
use PHPStan\Analyser\OutOfClassScope;
use PHPStan\Node\InvalidateExprNode;
use PHPStan\Php\PhpVersion;
use PHPStan\PhpDoc\Tag\TemplateTag;
use PHPStan\PhpDocParser\Ast\PhpDoc\TemplateTagValueNode;
use PHPStan\PhpDocParser\Ast\Type\CallableTypeNode;
use PHPStan\PhpDocParser\Ast\Type\CallableTypeParameterNode;
use PHPStan\PhpDocParser\Ast\Type\IdentifierTypeNode;
use PHPStan\PhpDocParser\Ast\Type\TypeNode;
use PHPStan\PhpDocParser\Printer\Printer;
use PHPStan\Reflection\Assertions;
use PHPStan\Reflection\Callables\CallableParametersAcceptor;
use PHPStan\Reflection\Callables\SimpleImpurePoint;
use PHPStan\Reflection\Callables\SimpleThrowPoint;
use PHPStan\Reflection\ClassConstantReflection;
use PHPStan\Reflection\ClassMemberAccessAnswerer;
use PHPStan\Reflection\ClassReflection;
use PHPStan\Reflection\ExtendedMethodReflection;
use PHPStan\Reflection\ExtendedParameterReflection;
use PHPStan\Reflection\ExtendedPropertyReflection;
use PHPStan\Reflection\Native\NativeParameterReflection;
use PHPStan\Reflection\ParameterReflection;
use PHPStan\Reflection\ParametersAcceptor;
use PHPStan\Reflection\ParametersAcceptorSelector;
use PHPStan\Reflection\PassedByReference;
use PHPStan\Reflection\Php\ClosureCallUnresolvedMethodPrototypeReflection;
use PHPStan\Reflection\Php\DummyParameter;
use PHPStan\Reflection\Type\UnresolvedMethodPrototypeReflection;
use PHPStan\Reflection\Type\UnresolvedPropertyPrototypeReflection;
use PHPStan\TrinaryLogic;
use PHPStan\Type\Constant\ConstantArrayType;
use PHPStan\Type\Constant\ConstantBooleanType;
use PHPStan\Type\Constant\ConstantIntegerType;
use PHPStan\Type\Enum\EnumCaseObjectType;
use PHPStan\Type\Generic\TemplateType;
use PHPStan\Type\Generic\TemplateTypeHelper;
use PHPStan\Type\Generic\TemplateTypeMap;
use PHPStan\Type\Generic\TemplateTypeVariance;
use PHPStan\Type\Generic\TemplateTypeVarianceMap;
use PHPStan\Type\Traits\NonArrayTypeTrait;
use PHPStan\Type\Traits\NonGeneralizableTypeTrait;
use PHPStan\Type\Traits\NonIterableTypeTrait;
use PHPStan\Type\Traits\NonOffsetAccessibleTypeTrait;
use PHPStan\Type\Traits\NonRemoveableTypeTrait;
use PHPStan\Type\Traits\UndecidedComparisonTypeTrait;
use function array_map;
use function array_merge;
use function count;
/** @api */
class ClosureType implements TypeWithClassName, CallableParametersAcceptor
{
use NonArrayTypeTrait;
use NonIterableTypeTrait;
use UndecidedComparisonTypeTrait;
use NonOffsetAccessibleTypeTrait;
use NonRemoveableTypeTrait;
use NonGeneralizableTypeTrait;
/** @var list<ParameterReflection> */
private array $parameters;
private Type $returnType;
private bool $isCommonCallable;
private ObjectType $objectType;
private TemplateTypeMap $templateTypeMap;
private TemplateTypeMap $resolvedTemplateTypeMap;
private TemplateTypeVarianceMap $callSiteVarianceMap;
/** @var SimpleImpurePoint[] */
private array $impurePoints;
private TrinaryLogic $acceptsNamedArguments;
private TrinaryLogic $mustUseReturnValue;
private Assertions $assertions;
/**
* @api
* @param list<ParameterReflection>|null $parameters
* @param array<non-empty-string, TemplateTag> $templateTags
* @param SimpleThrowPoint[] $throwPoints
* @param ?SimpleImpurePoint[] $impurePoints
* @param InvalidateExprNode[] $invalidateExpressions
* @param string[] $usedVariables
*/
public function __construct(
?array $parameters = null,
?Type $returnType = null,
private bool $variadic = true,
?TemplateTypeMap $templateTypeMap = null,
?TemplateTypeMap $resolvedTemplateTypeMap = null,
?TemplateTypeVarianceMap $callSiteVarianceMap = null,
private array $templateTags = [],
private array $throwPoints = [],
?array $impurePoints = null,
private array $invalidateExpressions = [],
private array $usedVariables = [],
?TrinaryLogic $acceptsNamedArguments = null,
?TrinaryLogic $mustUseReturnValue = null,
?Assertions $assertions = null,
)
{
if ($acceptsNamedArguments === null) {
$acceptsNamedArguments = TrinaryLogic::createYes();
}
$this->acceptsNamedArguments = $acceptsNamedArguments;
if ($mustUseReturnValue === null) {
$mustUseReturnValue = TrinaryLogic::createMaybe();
}
$this->mustUseReturnValue = $mustUseReturnValue;
$this->parameters = $parameters ?? [];
$this->returnType = $returnType ?? new MixedType();
$this->isCommonCallable = $parameters === null && $returnType === null;
$this->objectType = new ObjectType(Closure::class);
$this->templateTypeMap = $templateTypeMap ?? TemplateTypeMap::createEmpty();
$this->resolvedTemplateTypeMap = $resolvedTemplateTypeMap ?? TemplateTypeMap::createEmpty();
$this->callSiteVarianceMap = $callSiteVarianceMap ?? TemplateTypeVarianceMap::createEmpty();
$this->impurePoints = $impurePoints ?? [new SimpleImpurePoint('functionCall', 'call to an unknown Closure', false)];
$this->assertions = $assertions ?? Assertions::createEmpty();
}
public function getAsserts(): Assertions
{
return $this->assertions;
}
/**
* @return array<non-empty-string, TemplateTag>
*/
public function getTemplateTags(): array
{
return $this->templateTags;
}
public static function createPure(): self
{
return new self(
parameters: null,
returnType: null,
variadic: true,
templateTypeMap: null,
resolvedTemplateTypeMap: null,
callSiteVarianceMap: null,
templateTags: [],
throwPoints: [],
impurePoints: [],
);
}
public function isPure(): TrinaryLogic
{
$impurePoints = $this->getImpurePoints();
if (count($impurePoints) === 0) {
return TrinaryLogic::createYes();
}
$certainCount = 0;
foreach ($impurePoints as $impurePoint) {
if (!$impurePoint->isCertain()) {
continue;
}
$certainCount++;
}
return $certainCount > 0 ? TrinaryLogic::createNo() : TrinaryLogic::createMaybe();
}
public function getClassName(): string
{
return $this->objectType->getClassName();
}
public function getClassReflection(): ?ClassReflection
{
return $this->objectType->getClassReflection();
}
public function getAncestorWithClassName(string $className): ?TypeWithClassName
{
return $this->objectType->getAncestorWithClassName($className);
}
public function getReferencedClasses(): array
{
$classes = $this->objectType->getReferencedClasses();
foreach ($this->parameters as $parameter) {
$classes = array_merge($classes, $parameter->getType()->getReferencedClasses());
}
return array_merge($classes, $this->returnType->getReferencedClasses());
}
public function getObjectClassNames(): array
{
return $this->objectType->getObjectClassNames();
}
public function getObjectClassReflections(): array
{
return $this->objectType->getObjectClassReflections();
}
public function accepts(Type $type, bool $strictTypes): AcceptsResult
{
if ($type instanceof CompoundType) {
return $type->isAcceptedBy($this, $strictTypes);
}
if (!$type instanceof ClosureType) {
return $this->objectType->accepts($type, $strictTypes);
}
return $this->isSuperTypeOfInternal($type, true)->toAcceptsResult();
}
public function isSuperTypeOf(Type $type): IsSuperTypeOfResult
{
if ($type instanceof CompoundType) {
return $type->isSubTypeOf($this);
}
return $this->isSuperTypeOfInternal($type, false);
}
private function isSuperTypeOfInternal(Type $type, bool $treatMixedAsAny): IsSuperTypeOfResult
{
if ($type instanceof self) {
$parameterTypes = array_map(static fn ($parameter) => $parameter->getType(), $this->getParameters());
$variant = ParametersAcceptorSelector::selectFromTypes($parameterTypes, [$type], false);
if (!$variant instanceof CallableParametersAcceptor) {
return IsSuperTypeOfResult::createNo([]);
}
return CallableTypeHelper::isParametersAcceptorSuperTypeOf(
$this,
$variant,
$treatMixedAsAny,
);
}
if ($type->getObjectClassNames() === [Closure::class]) {
return IsSuperTypeOfResult::createMaybe();
}
return $this->objectType->isSuperTypeOf($type);
}
public function equals(Type $type): bool
{
if (!$type instanceof self) {
return false;
}
return $this->describe(VerbosityLevel::precise()) === $type->describe(VerbosityLevel::precise())
&& $this->isPure()->equals($type->isPure());
}
public function describe(VerbosityLevel $level): string
{
return $level->handle(
static fn (): string => 'Closure',
function (): string {
if ($this->isCommonCallable) {
return $this->isPure()->yes() ? 'pure-Closure' : 'Closure';
}
$printer = new Printer();
$selfWithoutParameterNames = new self(
array_map(static fn (ParameterReflection $p): ParameterReflection => new DummyParameter(
'',
$p->getType(),
optional: $p->isOptional() && !$p->isVariadic(),
passedByReference: PassedByReference::createNo(),
variadic: $p->isVariadic(),
defaultValue: $p->getDefaultValue(),
), $this->parameters),
$this->returnType,
$this->variadic,
$this->templateTypeMap,
$this->resolvedTemplateTypeMap,
$this->callSiteVarianceMap,
$this->templateTags,
$this->throwPoints,
$this->impurePoints,
$this->invalidateExpressions,
$this->usedVariables,
$this->acceptsNamedArguments,
$this->mustUseReturnValue,
);
return $printer->print($selfWithoutParameterNames->toPhpDocNode());
},
);
}
public function isOffsetAccessLegal(): TrinaryLogic
{
return TrinaryLogic::createNo();
}
public function isObject(): TrinaryLogic
{
return $this->objectType->isObject();
}
public function getClassStringType(): Type
{
return $this->objectType->getClassStringType();
}
public function isEnum(): TrinaryLogic
{
return $this->objectType->isEnum();
}
public function getTemplateType(string $ancestorClassName, string $templateTypeName): Type
{
return $this->objectType->getTemplateType($ancestorClassName, $templateTypeName);
}
public function canAccessProperties(): TrinaryLogic
{
return $this->objectType->canAccessProperties();
}
public function hasProperty(string $propertyName): TrinaryLogic
{
return $this->objectType->hasProperty($propertyName);
}
public function getProperty(string $propertyName, ClassMemberAccessAnswerer $scope): ExtendedPropertyReflection
{
return $this->objectType->getProperty($propertyName, $scope);
}
public function getUnresolvedPropertyPrototype(string $propertyName, ClassMemberAccessAnswerer $scope): UnresolvedPropertyPrototypeReflection
{
return $this->objectType->getUnresolvedPropertyPrototype($propertyName, $scope);
}
public function hasInstanceProperty(string $propertyName): TrinaryLogic
{
return $this->objectType->hasInstanceProperty($propertyName);
}
public function getInstanceProperty(string $propertyName, ClassMemberAccessAnswerer $scope): ExtendedPropertyReflection
{
return $this->objectType->getInstanceProperty($propertyName, $scope);
}
public function getUnresolvedInstancePropertyPrototype(string $propertyName, ClassMemberAccessAnswerer $scope): UnresolvedPropertyPrototypeReflection
{
return $this->objectType->getUnresolvedInstancePropertyPrototype($propertyName, $scope);
}
public function hasStaticProperty(string $propertyName): TrinaryLogic
{
return $this->objectType->hasStaticProperty($propertyName);
}
public function getStaticProperty(string $propertyName, ClassMemberAccessAnswerer $scope): ExtendedPropertyReflection
{
return $this->objectType->getStaticProperty($propertyName, $scope);
}
public function getUnresolvedStaticPropertyPrototype(string $propertyName, ClassMemberAccessAnswerer $scope): UnresolvedPropertyPrototypeReflection
{
return $this->objectType->getUnresolvedStaticPropertyPrototype($propertyName, $scope);
}
public function canCallMethods(): TrinaryLogic
{
return $this->objectType->canCallMethods();
}
public function hasMethod(string $methodName): TrinaryLogic
{
return $this->objectType->hasMethod($methodName);
}
public function getMethod(string $methodName, ClassMemberAccessAnswerer $scope): ExtendedMethodReflection
{
return $this->getUnresolvedMethodPrototype($methodName, $scope)->getTransformedMethod();
}
public function getUnresolvedMethodPrototype(string $methodName, ClassMemberAccessAnswerer $scope): UnresolvedMethodPrototypeReflection
{
if ($methodName === 'call') {
return new ClosureCallUnresolvedMethodPrototypeReflection(
$this->objectType->getUnresolvedMethodPrototype($methodName, $scope),
$this,
);
}
return $this->objectType->getUnresolvedMethodPrototype($methodName, $scope);
}
public function canAccessConstants(): TrinaryLogic
{
return $this->objectType->canAccessConstants();
}
public function hasConstant(string $constantName): TrinaryLogic
{
return $this->objectType->hasConstant($constantName);
}
public function getConstant(string $constantName): ClassConstantReflection
{
return $this->objectType->getConstant($constantName);
}
public function getConstantStrings(): array
{
return [];
}
public function isIterable(): TrinaryLogic
{
return TrinaryLogic::createNo();
}
public function isIterableAtLeastOnce(): TrinaryLogic
{
return TrinaryLogic::createNo();
}
public function isCallable(): TrinaryLogic
{
return TrinaryLogic::createYes();
}
public function getEnumCases(): array
{
return [];
}
public function getEnumCaseObject(): ?EnumCaseObjectType
{
return null;
}
public function isCommonCallable(): bool
{
return $this->isCommonCallable;
}
public function getCallableParametersAcceptors(ClassMemberAccessAnswerer $scope): array
{
return [$this];
}
public function getThrowPoints(): array
{
return $this->throwPoints;
}
public function getImpurePoints(): array
{
return $this->impurePoints;
}
public function getInvalidateExpressions(): array
{
return $this->invalidateExpressions;
}
public function getUsedVariables(): array
{
return $this->usedVariables;
}
public function acceptsNamedArguments(): TrinaryLogic
{
return $this->acceptsNamedArguments;
}
public function mustUseReturnValue(): TrinaryLogic
{
return $this->mustUseReturnValue;
}
public function isCloneable(): TrinaryLogic
{
return TrinaryLogic::createYes();
}
public function toBoolean(): BooleanType
{
return new ConstantBooleanType(true);
}
public function toNumber(): Type
{
return new ErrorType();
}
public function toAbsoluteNumber(): Type
{
return new ErrorType();
}
public function toInteger(): Type
{
return new ErrorType();
}
public function toFloat(): Type
{
return new ErrorType();
}
public function toString(): Type
{
return new ErrorType();
}
public function toArray(): Type
{
return new ConstantArrayType(
[new ConstantIntegerType(0)],
[$this],
[1],
isList: TrinaryLogic::createYes(),
);
}
public function toArrayKey(): Type
{
return new ErrorType();
}
public function toCoercedArgumentType(bool $strictTypes): Type
{
return TypeCombinator::union($this, new CallableType());
}
public function getTemplateTypeMap(): TemplateTypeMap
{
return $this->templateTypeMap;
}
public function getResolvedTemplateTypeMap(): TemplateTypeMap
{
return $this->resolvedTemplateTypeMap;
}
public function getCallSiteVarianceMap(): TemplateTypeVarianceMap
{
return $this->callSiteVarianceMap;
}
/**
* @return list<ParameterReflection>
*/
public function getParameters(): array
{
return $this->parameters;
}
public function isVariadic(): bool
{
return $this->variadic;
}
public function getReturnType(): Type
{
return $this->returnType;
}
public function inferTemplateTypes(Type $receivedType): TemplateTypeMap
{
if ($receivedType instanceof UnionType || $receivedType instanceof IntersectionType) {
return $receivedType->inferTemplateTypesOn($this);
}
if ($receivedType->isCallable()->no() || ! $receivedType instanceof self) {
return TemplateTypeMap::createEmpty();
}
$parametersAcceptors = $receivedType->getCallableParametersAcceptors(new OutOfClassScope());
$typeMap = TemplateTypeMap::createEmpty();
foreach ($parametersAcceptors as $parametersAcceptor) {
$typeMap = $typeMap->union($this->inferTemplateTypesOnParametersAcceptor($parametersAcceptor));
}
return $typeMap;
}
private function inferTemplateTypesOnParametersAcceptor(ParametersAcceptor $parametersAcceptor): TemplateTypeMap
{
$parameterTypes = array_map(static fn ($parameter) => $parameter->getType(), $this->getParameters());
$parametersAcceptor = ParametersAcceptorSelector::selectFromTypes($parameterTypes, [$parametersAcceptor], false);
$args = $parametersAcceptor->getParameters();
$returnType = $parametersAcceptor->getReturnType();
$typeMap = TemplateTypeMap::createEmpty();
foreach ($this->getParameters() as $i => $param) {
$paramType = $param->getType();
if (isset($args[$i])) {
$argType = $args[$i]->getType();
} elseif ($paramType instanceof TemplateType) {
$argType = TemplateTypeHelper::resolveToBounds($paramType);
} else {
$argType = new NeverType();
}
$typeMap = $typeMap->union($paramType->inferTemplateTypes($argType)->convertToLowerBoundTypes());
}
return $typeMap->union($this->getReturnType()->inferTemplateTypes($returnType));
}
public function getReferencedTemplateTypes(TemplateTypeVariance $positionVariance): array
{
$references = $this->getReturnType()->getReferencedTemplateTypes(
$positionVariance->compose(TemplateTypeVariance::createCovariant()),
);
$paramVariance = $positionVariance->compose(TemplateTypeVariance::createContravariant());
foreach ($this->getParameters() as $param) {
foreach ($param->getType()->getReferencedTemplateTypes($paramVariance) as $reference) {
$references[] = $reference;
}
}
return $references;
}
public function traverse(callable $cb): Type
{
if ($this->isCommonCallable) {
return $this;
}
return new self(
array_map(static function (ParameterReflection $param) use ($cb): NativeParameterReflection {
$defaultValue = $param->getDefaultValue();
return new NativeParameterReflection(
$param->getName(),
$param->isOptional(),
$cb($param->getType()),
$param->passedByReference(),
$param->isVariadic(),
$defaultValue !== null ? $cb($defaultValue) : null,
);
}, $this->getParameters()),
$cb($this->getReturnType()),
$this->isVariadic(),
$this->templateTypeMap,
$this->resolvedTemplateTypeMap,
$this->callSiteVarianceMap,
$this->templateTags,
$this->throwPoints,
$this->impurePoints,
$this->invalidateExpressions,
$this->usedVariables,
$this->acceptsNamedArguments,
$this->mustUseReturnValue,
$this->assertions,
);
}
public function traverseSimultaneously(Type $right, callable $cb): Type
{
if ($this->isCommonCallable) {
return $this;
}
if (!$right instanceof self) {
return $this;
}
$rightParameters = $right->getParameters();
if (count($this->getParameters()) !== count($rightParameters)) {
return $this;
}
$parameters = [];
foreach ($this->getParameters() as $i => $leftParam) {
$rightParam = $rightParameters[$i];
$leftDefaultValue = $leftParam->getDefaultValue();
$rightDefaultValue = $rightParam->getDefaultValue();
$defaultValue = $leftDefaultValue;
if ($leftDefaultValue !== null && $rightDefaultValue !== null) {
$defaultValue = $cb($leftDefaultValue, $rightDefaultValue);
}
$parameters[] = new NativeParameterReflection(
$leftParam->getName(),
$leftParam->isOptional(),
$cb($leftParam->getType(), $rightParam->getType()),
$leftParam->passedByReference(),
$leftParam->isVariadic(),
$defaultValue,
);
}
return new self(
$parameters,
$cb($this->getReturnType(), $right->getReturnType()),
$this->isVariadic(),
$this->templateTypeMap,
$this->resolvedTemplateTypeMap,
$this->callSiteVarianceMap,
$this->templateTags,
$this->throwPoints,
$this->impurePoints,
$this->invalidateExpressions,
$this->usedVariables,
$this->acceptsNamedArguments,
$this->mustUseReturnValue,
$this->assertions,
);
}
public function isNull(): TrinaryLogic
{
return TrinaryLogic::createNo();
}
public function isConstantValue(): TrinaryLogic
{
return TrinaryLogic::createNo();
}
public function isConstantScalarValue(): TrinaryLogic
{
return TrinaryLogic::createNo();
}
public function getConstantScalarTypes(): array
{
return [];
}
public function getConstantScalarValues(): array
{
return [];
}
public function isTrue(): TrinaryLogic
{
return TrinaryLogic::createNo();
}
public function isFalse(): TrinaryLogic
{
return TrinaryLogic::createNo();
}
public function isBoolean(): TrinaryLogic
{
return TrinaryLogic::createNo();
}
public function isFloat(): TrinaryLogic
{
return TrinaryLogic::createNo();
}
public function isInteger(): TrinaryLogic
{
return TrinaryLogic::createNo();
}
public function isString(): TrinaryLogic
{
return TrinaryLogic::createNo();
}
public function isNumericString(): TrinaryLogic
{
return TrinaryLogic::createNo();
}
public function isNonEmptyString(): TrinaryLogic
{
return TrinaryLogic::createNo();
}
public function isNonFalsyString(): TrinaryLogic
{
return TrinaryLogic::createNo();
}
public function isLiteralString(): TrinaryLogic
{
return TrinaryLogic::createNo();
}
public function isLowercaseString(): TrinaryLogic
{
return TrinaryLogic::createNo();
}
public function isClassString(): TrinaryLogic
{
return TrinaryLogic::createNo();
}
public function isUppercaseString(): TrinaryLogic
{
return TrinaryLogic::createNo();
}
public function getClassStringObjectType(): Type
{
return new ErrorType();
}
public function getObjectTypeOrClassStringObjectType(): Type
{
return $this;
}
public function isVoid(): TrinaryLogic
{
return TrinaryLogic::createNo();
}
public function isScalar(): TrinaryLogic
{
return TrinaryLogic::createNo();
}
public function looseCompare(Type $type, PhpVersion $phpVersion): BooleanType
{
return new BooleanType();
}
public function exponentiate(Type $exponent): Type
{
return new ErrorType();
}
public function getFiniteTypes(): array
{
return [];
}
public function toPhpDocNode(): TypeNode
{
if ($this->isCommonCallable) {
return new IdentifierTypeNode($this->isPure()->yes() ? 'pure-Closure' : 'Closure');
}
$parameters = [];
foreach ($this->parameters as $parameter) {
$parameters[] = new CallableTypeParameterNode(
$parameter->getType()->toPhpDocNode(),
!$parameter->passedByReference()->no(),
$parameter->isVariadic(),
$parameter->getName() === '' ? '' : '$' . $parameter->getName(),
$parameter->isOptional(),
);
}
$templateTags = [];
foreach ($this->templateTags as $templateName => $templateTag) {
$templateTags[] = new TemplateTagValueNode(
$templateName,
$templateTag->getBound()->toPhpDocNode(),
'',
);
}
return new CallableTypeNode(
new IdentifierTypeNode('Closure'),
$parameters,
$this->returnType->toPhpDocNode(),
$templateTags,
);
}
public function hasTemplateOrLateResolvableType(): bool
{
foreach ($this->parameters as $parameter) {
if ($parameter->getType()->hasTemplateOrLateResolvableType()) {
return true;
}
if (!$parameter instanceof ExtendedParameterReflection) {
continue;
}
if ($parameter->getOutType() !== null && $parameter->getOutType()->hasTemplateOrLateResolvableType()) {
return true;
}
if ($parameter->getClosureThisType() !== null && $parameter->getClosureThisType()->hasTemplateOrLateResolvableType()) {
return true;
}
}
return $this->getReturnType()->hasTemplateOrLateResolvableType();
}
}