Skip to content

Commit 224752b

Browse files
authored
Merge branch refs/heads/1.11.x into 1.12.x
2 parents dc3b598 + bbd64a9 commit 224752b

File tree

6 files changed

+99
-9
lines changed

6 files changed

+99
-9
lines changed

phpstan-baseline.neon

+1-1
Original file line numberDiff line numberDiff line change
@@ -823,7 +823,7 @@ parameters:
823823

824824
-
825825
message: "#^Doing instanceof PHPStan\\\\Type\\\\IntersectionType is error\\-prone and deprecated\\.$#"
826-
count: 1
826+
count: 2
827827
path: src/Type/Constant/ConstantArrayType.php
828828

829829
-

src/Type/Constant/ConstantArrayType.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
use PHPStan\Type\ConstantType;
3434
use PHPStan\Type\ErrorType;
3535
use PHPStan\Type\GeneralizePrecision;
36-
use PHPStan\Type\Generic\TemplateMixedType;
3736
use PHPStan\Type\Generic\TemplateTypeMap;
3837
use PHPStan\Type\Generic\TemplateTypeVariance;
3938
use PHPStan\Type\IntegerRangeType;
@@ -296,7 +295,7 @@ public function accepts(Type $type, bool $strictTypes): TrinaryLogic
296295

297296
public function acceptsWithReason(Type $type, bool $strictTypes): AcceptsResult
298297
{
299-
if ($type instanceof MixedType && !$type instanceof TemplateMixedType) {
298+
if ($type instanceof CompoundType && !$type instanceof IntersectionType) {
300299
return $type->isAcceptedWithReasonBy($this, $strictTypes);
301300
}
302301

tests/PHPStan/Rules/Functions/CallToFunctionParametersRuleTest.php

+1-6
Original file line numberDiff line numberDiff line change
@@ -1126,12 +1126,7 @@ public function testBug7211(): void
11261126

11271127
public function testBug5474(): void
11281128
{
1129-
$this->analyse([__DIR__ . '/../Comparison/data/bug-5474.php'], [
1130-
[
1131-
'Parameter #1 $data of function Bug5474\testData expects array{test: int}, *NEVER* given.',
1132-
26,
1133-
],
1134-
]);
1129+
$this->analyse([__DIR__ . '/../Comparison/data/bug-5474.php'], []);
11351130
}
11361131

11371132
public function testBug6261(): void

tests/PHPStan/Rules/Generators/YieldFromTypeRuleTest.php

+5
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,9 @@ public function testRule(): void
4848
]);
4949
}
5050

51+
public function testBug11517(): void
52+
{
53+
$this->analyse([__DIR__ . '/data/bug-11517.php'], []);
54+
}
55+
5156
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?php declare(strict_types = 1);
2+
3+
namespace Bug11517;
4+
5+
class HelloWorld
6+
{
7+
/**
8+
* @return iterable<array-key, array{string}>
9+
*/
10+
public function bug(): iterable
11+
{
12+
yield from [];
13+
}
14+
15+
/**
16+
* @return iterable<array-key, object{a: string}>
17+
*/
18+
public function fine(): iterable
19+
{
20+
yield from [];
21+
}
22+
23+
/**
24+
* @return iterable<array-key, string>
25+
*/
26+
public function finetoo(): iterable
27+
{
28+
yield from [];
29+
}
30+
}

tests/PHPStan/Type/Constant/ConstantArrayTypeTest.php

+61
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,19 @@
55
use Closure;
66
use PHPStan\Testing\PHPStanTestCase;
77
use PHPStan\TrinaryLogic;
8+
use PHPStan\Type\Accessory\HasOffsetType;
9+
use PHPStan\Type\Accessory\HasOffsetValueType;
810
use PHPStan\Type\ArrayType;
911
use PHPStan\Type\CallableType;
1012
use PHPStan\Type\Generic\GenericClassStringType;
1113
use PHPStan\Type\Generic\TemplateTypeFactory;
1214
use PHPStan\Type\Generic\TemplateTypeScope;
1315
use PHPStan\Type\Generic\TemplateTypeVariance;
1416
use PHPStan\Type\IntegerType;
17+
use PHPStan\Type\IntersectionType;
1518
use PHPStan\Type\IterableType;
1619
use PHPStan\Type\MixedType;
20+
use PHPStan\Type\NeverType;
1721
use PHPStan\Type\ObjectType;
1822
use PHPStan\Type\StringType;
1923
use PHPStan\Type\Type;
@@ -345,6 +349,63 @@ public function dataAccepts(): iterable
345349
]),
346350
TrinaryLogic::createNo(),
347351
];
352+
353+
yield [
354+
new ConstantArrayType([], []),
355+
new NeverType(),
356+
TrinaryLogic::createYes(),
357+
];
358+
359+
yield [
360+
new ConstantArrayType([new ConstantIntegerType(1)], [new ConstantIntegerType(2)]),
361+
new NeverType(),
362+
TrinaryLogic::createYes(),
363+
];
364+
365+
yield [
366+
new ConstantArrayType([new ConstantStringType('test')], [new MixedType()]),
367+
new IntersectionType([
368+
new ArrayType(new MixedType(), new MixedType()),
369+
new HasOffsetType(new ConstantStringType('test')),
370+
]),
371+
TrinaryLogic::createYes(),
372+
];
373+
374+
yield [
375+
new ConstantArrayType([new ConstantStringType('test')], [new StringType()]),
376+
new IntersectionType([
377+
new ArrayType(new MixedType(), new MixedType()),
378+
new HasOffsetValueType(new ConstantStringType('test'), new StringType()),
379+
]),
380+
TrinaryLogic::createYes(),
381+
];
382+
383+
yield [
384+
new ConstantArrayType([new ConstantStringType('test')], [new MixedType()]),
385+
new UnionType([
386+
new ArrayType(new MixedType(), new MixedType()),
387+
new HasOffsetType(new ConstantStringType('test')),
388+
]),
389+
TrinaryLogic::createMaybe(),
390+
];
391+
392+
yield [
393+
new ConstantArrayType([new ConstantStringType('test')], [new StringType()]),
394+
new UnionType([
395+
new ArrayType(new MixedType(), new MixedType()),
396+
new HasOffsetValueType(new ConstantStringType('test'), new StringType()),
397+
]),
398+
TrinaryLogic::createMaybe(),
399+
];
400+
401+
yield [
402+
new ConstantArrayType([new ConstantStringType('test')], [new MixedType()]),
403+
new IntersectionType([
404+
new UnionType([new ArrayType(new MixedType(), new MixedType()), new IterableType(new MixedType(), new MixedType())]),
405+
new HasOffsetType(new ConstantStringType('test')),
406+
]),
407+
TrinaryLogic::createMaybe(),
408+
];
348409
}
349410

350411
/**

0 commit comments

Comments
 (0)