Skip to content

Commit 2086d8d

Browse files
committed
Fixed build
1 parent 46a447b commit 2086d8d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/Rules/PHPUnit/AssertSameMethodDifferentTypesRuleTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class AssertSameMethodDifferentTypesRuleTest extends \PHPStan\Testing\RuleTestCa
1515

1616
protected function getRule(): Rule
1717
{
18-
return new ImpossibleCheckTypeMethodCallRule(new ImpossibleCheckTypeHelper($this->createBroker(), $this->getTypeSpecifier()), true);
18+
return new ImpossibleCheckTypeMethodCallRule(new ImpossibleCheckTypeHelper($this->createBroker(), $this->getTypeSpecifier(), []), true);
1919
}
2020

2121
/**

tests/Rules/PHPUnit/AssertSameStaticMethodDifferentTypesRuleTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class AssertSameStaticMethodDifferentTypesRuleTest extends \PHPStan\Testing\Rule
1515

1616
protected function getRule(): Rule
1717
{
18-
return new ImpossibleCheckTypeStaticMethodCallRule(new ImpossibleCheckTypeHelper($this->createBroker(), $this->getTypeSpecifier()), true);
18+
return new ImpossibleCheckTypeStaticMethodCallRule(new ImpossibleCheckTypeHelper($this->createBroker(), $this->getTypeSpecifier(), []), true);
1919
}
2020

2121
/**

0 commit comments

Comments
 (0)