Skip to content

Commit 9bd4e02

Browse files
committed
Fix CS
1 parent f7a764a commit 9bd4e02

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Symfony/NeonTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ public function testExtensionNeon(): void
2020
], []);
2121
$parameters = $container->getParameters();
2222
$this->assertArrayHasKey('rootDir', $parameters);
23-
$this->assertSame(realpath(__DIR__ . '/../../vendor/phpstan/phpstan'), $parameters['rootDir']);
23+
$this->assertSame(realpath(__DIR__ . '/../../vendor/phpstan/phpstan'), $parameters['rootDir']);
2424

2525
$this->assertArrayHasKey('symfony', $parameters);
2626
$this->assertSame([
2727
'container_xml_path' => __DIR__ . '/container.xml',
2828
'constant_hassers' => true,
2929
'console_application_loader' => null,
30-
] , $parameters['symfony']);
30+
], $parameters['symfony']);
3131

3232
self::assertCount(6, $container->getServicesByTag('phpstan.rules.rule'));
3333
self::assertCount(15, $container->getServicesByTag('phpstan.broker.dynamicMethodReturnTypeExtension'));

0 commit comments

Comments
 (0)