Skip to content

Commit 4afd8a8

Browse files
committed
Fix cs
1 parent 485efbc commit 4afd8a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/DependencyInjection/FixtureMonologExtensionTestCase.php

Lines changed: 2 additions & 2 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) {

0 commit comments

Comments
 (0)