1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-17 18:36:32 +02:00

Wrap up type-hint adding to all handlers

This commit is contained in:
Jordi Boggiano
2018-11-19 23:28:33 +01:00
parent 1c5b0b8ff4
commit 4a33226f25
47 changed files with 338 additions and 352 deletions

View File

@@ -163,7 +163,7 @@ class NewRelicHandlerTest extends TestCase
class StubNewRelicHandlerWithoutExtension extends NewRelicHandler
{
protected function isNewRelicEnabled()
protected function isNewRelicEnabled(): bool
{
return false;
}
@@ -171,7 +171,7 @@ class StubNewRelicHandlerWithoutExtension extends NewRelicHandler
class StubNewRelicHandler extends NewRelicHandler
{
protected function isNewRelicEnabled()
protected function isNewRelicEnabled(): bool
{
return true;
}