Skip to content

Commit

Permalink
chore: bump Infra to 1.11
Browse files Browse the repository at this point in the history
  • Loading branch information
dkarlovi committed Jun 24, 2024
1 parent 78dafcb commit 0dc3289
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/Bridge/Symfony/Test/Functional/XezilairesBundleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,20 @@ final class XezilairesBundleTest extends KernelTestCase
{
use FixtureTrait;

// TODO: remove when https://github.com/symfony/symfony/issues/53812 is fixed
protected function tearDown(): void
{
parent::tearDown();
while (true) {
$previousHandler = set_exception_handler(static fn () => null);
restore_exception_handler();
if ($previousHandler === null) {
break;
}
restore_exception_handler();
}
}

/**
* @throws \Symfony\Component\DependencyInjection\Exception\ServiceCircularReferenceException
*/
Expand Down

0 comments on commit 0dc3289

Please sign in to comment.