Skip to content

Commit aa1986d

Browse files
committed
Fix cs
1 parent 485efbc commit aa1986d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/DependencyInjection/FixtureMonologExtensionTestCase.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ public function testPsr3MessageProcessingDisabled()
253253
$this->assertNotContainsEquals(['pushProcessor', [new Reference('monolog.processor.psr_log_message')]], $methodCalls, 'The PSR-3 processor should not be enabled');
254254
}
255255

256-
public function testPsrLogMessageProcessorHasConstructorArguments(): void
256+
public function testPsrLogMessageProcessorHasConstructorArguments()
257257
{
258258
$reflectionConstructor = (new \ReflectionClass(PsrLogMessageProcessor::class))->getConstructor();
259259
if (null === $reflectionConstructor || $reflectionConstructor->getNumberOfParameters() <= 0) {
@@ -280,7 +280,7 @@ public function testPsrLogMessageProcessorHasConstructorArguments(): void
280280
}
281281
}
282282

283-
public function testPsrLogMessageProcessorDoesNotHaveConstructorArguments(): void
283+
public function testPsrLogMessageProcessorDoesNotHaveConstructorArguments()
284284
{
285285
$reflectionConstructor = (new \ReflectionClass(PsrLogMessageProcessor::class))->getConstructor();
286286
if (null !== $reflectionConstructor && $reflectionConstructor->getNumberOfParameters() > 0) {
@@ -322,7 +322,7 @@ public function testTypeNull()
322322
$this->assertSame(NullHandler::class, $logger->getClass());
323323
$this->assertSame('DEBUG', $logger->getArgument(0));
324324
}
325-
325+
326326
public function testEnabledHandleOption()
327327
{
328328
$container = $this->getContainer('enabled_handlers');

0 commit comments

Comments
 (0)