Skip to content

Commit 204e0e3

Browse files
Failing test
1 parent ef09fcd commit 204e0e3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/Type/Symfony/data/browserkit_assertion_trait.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@
99
class Foo {
1010
use BrowserKitAssertionsTrait;
1111

12-
public function test(AbstractBrowser $browser, ?AbstractBrowser $nullableBrowser)
12+
public function test(AbstractBrowser $browser, ?AbstractBrowser $nullableBrowser, mixed $mixed)
1313
{
1414
assertType('Symfony\Component\BrowserKit\AbstractBrowser', $this->getClient());
1515
assertType('null', $this->getClient(null));
1616
assertType('Symfony\Component\BrowserKit\AbstractBrowser', $this->getClient($browser));
1717
assertType('Symfony\Component\BrowserKit\AbstractBrowser|null', $this->getClient($nullableBrowser));
18+
assertType('Symfony\Component\BrowserKit\AbstractBrowser|null', $this->getClient($mixed));
1819
}
1920
}

0 commit comments

Comments
 (0)