From 0d94c5fee5cdee419f27c459fbe2bf96505f30b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Paris?= Date: Sun, 3 May 2020 17:55:58 +0200 Subject: [PATCH] Add extra line to avoid weird alignment --- .../Doctrine/Tests/DBAL/Driver/Mysqli/MysqliConnectionTest.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/Doctrine/Tests/DBAL/Driver/Mysqli/MysqliConnectionTest.php b/tests/Doctrine/Tests/DBAL/Driver/Mysqli/MysqliConnectionTest.php index c6f096fa4f4..5e4b43aff8c 100644 --- a/tests/Doctrine/Tests/DBAL/Driver/Mysqli/MysqliConnectionTest.php +++ b/tests/Doctrine/Tests/DBAL/Driver/Mysqli/MysqliConnectionTest.php @@ -44,9 +44,10 @@ public function testDoesNotRequireQueryForServerVersion() : void public function testRestoresErrorHandlerOnException() : void { - $handler = static function () : bool { + $handler = static function () : bool { self::fail('Never expected this to be called'); }; + $defaultHandler = set_error_handler($handler); try {