Add extra line to avoid weird alignment

parent db1bea18
...@@ -44,9 +44,10 @@ class MysqliConnectionTest extends DbalFunctionalTestCase ...@@ -44,9 +44,10 @@ class MysqliConnectionTest extends DbalFunctionalTestCase
public function testRestoresErrorHandlerOnException() : void public function testRestoresErrorHandlerOnException() : void
{ {
$handler = static function () : bool { $handler = static function () : bool {
self::fail('Never expected this to be called'); self::fail('Never expected this to be called');
}; };
$defaultHandler = set_error_handler($handler); $defaultHandler = set_error_handler($handler);
try { try {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment