1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-04 12:17:35 +02:00

Remove return annotations

This commit is contained in:
Jordi Boggiano
2017-03-20 10:18:43 +01:00
parent c192b1a373
commit fb751dff33

View File

@@ -68,12 +68,12 @@ class RollbarHandlerTest extends TestCase
});
}
private function createHandler(): RollbarHandler
private function createHandler()
{
return new RollbarHandler($this->rollbarNotifier, Logger::DEBUG);
}
private function createExceptionRecord($level = Logger::DEBUG, $message = 'test', $exception = null): array
private function createExceptionRecord($level = Logger::DEBUG, $message = 'test', $exception = null)
{
return $this->getRecord($level, $message, array(
'exception' => $exception ?: new Exception()