Skip to content

Commit a4d4ade

Browse files
committed
fix code based type missmatch
1 parent e5456af commit a4d4ade

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/PHPStan/Type/IntersectionTypeTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public static function dataAccepts(): Iterator
7373
}
7474

7575
#[DataProvider('dataAccepts')]
76-
public function testAccepts(IntersectionType $type, Type $otherType, TrinaryLogic $expectedResult): void
76+
public function testAccepts(Type $type, Type $otherType, TrinaryLogic $expectedResult): void
7777
{
7878
$actualResult = $type->accepts($otherType, true)->result;
7979
$this->assertSame(

0 commit comments

Comments
 (0)