Skip to content

Commit 8a6f7e9

Browse files
committed
Fix weird "stdClass not found" error in connection to array shapes
1 parent 88133cc commit 8a6f7e9

File tree

6 files changed

+86
-3
lines changed

6 files changed

+86
-3
lines changed

src/Analyser/NameScope.php

+14
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,20 @@ public function withTemplateTypeMap(TemplateTypeMap $map): self
175175
);
176176
}
177177

178+
public function withoutNamespaceAndUses(): self
179+
{
180+
return new self(
181+
null,
182+
[],
183+
$this->className,
184+
$this->functionName,
185+
$this->templateTypeMap,
186+
$this->typeAliasesMap,
187+
$this->bypassTypeAliases,
188+
$this->constUses,
189+
);
190+
}
191+
178192
public function withClassName(string $className): self
179193
{
180194
return new self(

src/Rules/PhpDoc/VarTagTypeRuleHelper.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ private function createNameScope(Scope $scope): NameScope
240240
$scope->isInClass() ? $scope->getClassReflection()->getName() : null,
241241
$scope->isInTrait() ? $scope->getTraitReflection()->getName() : null,
242242
$function !== null ? $function->getName() : null,
243-
);
243+
)->withoutNamespaceAndUses();
244244
}
245245

246246
}

tests/PHPStan/Analyser/AnalyserIntegrationTest.php

+8-1
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,12 @@ public function testExtendsPdoStatementCrash(): void
153153
$this->assertNoErrors($errors);
154154
}
155155

156+
public function testBug12803(): void
157+
{
158+
$errors = $this->runAnalyse(__DIR__ . '/data/bug-12803.php');
159+
$this->assertNoErrors($errors);
160+
}
161+
156162
public function testArrayDestructuringArrayDimFetch(): void
157163
{
158164
$errors = $this->runAnalyse(__DIR__ . '/data/array-destructuring-array-dim-fetch.php');
@@ -1204,7 +1210,8 @@ public function testBug5091(): void
12041210
public function testBug9459(): void
12051211
{
12061212
$errors = $this->runAnalyse(__DIR__ . '/data/bug-9459.php');
1207-
$this->assertCount(0, $errors);
1213+
$this->assertCount(1, $errors);
1214+
$this->assertSame('PHPDoc tag @var with type callable(): array is not subtype of native type Closure(): array{}.', $errors[0]->getMessage());
12081215
}
12091216

12101217
public function testBug9573(): void
+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?php
2+
3+
namespace Bug12803;
4+
5+
/** @template T */
6+
class Generic {}
7+
8+
class A
9+
{
10+
/** @param array{foo: int, bar: string} $foo */
11+
public function b(array $foo): void
12+
{
13+
/** @var Generic<object{foo: 2, bar: 1}> $a */
14+
$a = $this->c(fn() => (object) ['bar' => 1, 'foo' => 2]);
15+
$b = $this->c(fn() => (object) ['bar' => 1, 'foo' => 2]);
16+
}
17+
18+
/**
19+
* @template T
20+
* @param callable(): T $callback
21+
* @return Generic<T>
22+
*/
23+
public function c(callable $callback): Generic
24+
{
25+
return new Generic();
26+
}
27+
}

tests/PHPStan/Rules/PhpDoc/WrongVariableNameInVarTagRuleTest.php

+13-1
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,12 @@ public function testBug11535(): void
221221
$this->checkTypeAgainstPhpDocType = true;
222222
$this->strictWideningCheck = true;
223223

224-
$this->analyse([__DIR__ . '/data/bug-11535.php'], []);
224+
$this->analyse([__DIR__ . '/data/bug-11535.php'], [
225+
[
226+
'PHPDoc tag @var with type Closure(string): array<int> is not subtype of native type Closure(string): array{1, 2, 3}.',
227+
6,
228+
],
229+
]);
225230
}
226231

227232
public function testEnums(): void
@@ -570,4 +575,11 @@ public function testBug12457(): void
570575
]);
571576
}
572577

578+
public function testNewIsAlwaysFinalClass(): void
579+
{
580+
$this->checkTypeAgainstPhpDocType = true;
581+
$this->strictWideningCheck = true;
582+
$this->analyse([__DIR__ . '/data/new-is-always-final-var-tag-type.php'], []);
583+
}
584+
573585
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?php
2+
3+
namespace NewIsAlwaysFinalVarTagType;
4+
5+
class Foo
6+
{
7+
8+
/**
9+
* @return static
10+
*/
11+
public function returnStatic()
12+
{
13+
return $this;
14+
}
15+
16+
}
17+
18+
function (): void {
19+
$foo = new Foo();
20+
21+
/** @var Foo $bar */
22+
$bar = $foo->returnStatic();
23+
};

0 commit comments

Comments
 (0)