Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Failing test
  • Loading branch information
VincentLanglet committed Aug 30, 2025
commit 204e0e3ac650eb5601a21750b556fd0eb7c97667
3 changes: 2 additions & 1 deletion tests/Type/Symfony/data/browserkit_assertion_trait.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,12 @@
class Foo {
use BrowserKitAssertionsTrait;

public function test(AbstractBrowser $browser, ?AbstractBrowser $nullableBrowser)
public function test(AbstractBrowser $browser, ?AbstractBrowser $nullableBrowser, mixed $mixed)
{
assertType('Symfony\Component\BrowserKit\AbstractBrowser', $this->getClient());
assertType('null', $this->getClient(null));
assertType('Symfony\Component\BrowserKit\AbstractBrowser', $this->getClient($browser));
assertType('Symfony\Component\BrowserKit\AbstractBrowser|null', $this->getClient($nullableBrowser));
assertType('Symfony\Component\BrowserKit\AbstractBrowser|null', $this->getClient($mixed));
}
}
Loading