1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-16 01:54:19 +02:00

Fix error_handler return type declaration

This commit is contained in:
Thomas Perez
2019-07-31 22:19:02 +02:00
parent 2e3c369667
commit 4e095f38f4
4 changed files with 11 additions and 1 deletions

View File

@@ -182,6 +182,8 @@ class NormalizerFormatterTest extends \PHPUnit\Framework\TestCase
restore_error_handler();
$that->fail("$message should not be raised");
}
return true;
});
$formatter = new NormalizerFormatter();
@@ -215,6 +217,8 @@ class NormalizerFormatterTest extends \PHPUnit\Framework\TestCase
restore_error_handler();
$that->fail("$message should not be raised");
}
return true;
});
$formatter = new NormalizerFormatter();

View File

@@ -34,6 +34,8 @@ class RotatingFileHandlerTest extends TestCase
'code' => $code,
'message' => $message,
];
return true;
});
}