Skip to content

Commit 68f858f

Browse files
fix code style
1 parent a8c8d4c commit 68f858f

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

tests/Unit/DependencyInjection/ConfigurationTest.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313
use Symfony\Component\Config\Definition\ConfigurationInterface;
1414
use Symfony\Component\Config\Definition\Exception\InvalidConfigurationException;
1515
use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
16-
use Symfony\Component\HttpKernel\Kernel;
17-
use function class_exists;
1816

1917
/**
2018
* @author David Buchmann <[email protected]>
@@ -117,7 +115,7 @@ protected function getConfiguration(): ConfigurationInterface
117115

118116
public function testSupportsAllConfigFormats(): void
119117
{
120-
if (!class_exists(Client::class)) {
118+
if (!\class_exists(Client::class)) {
121119
$this->markTestSkipped('Guzzle 7 adapter is not installed');
122120
}
123121

@@ -330,7 +328,7 @@ public function testSupportsAllConfigFormats(): void
330328
];
331329

332330
// XML configuration is not supported in Symfony 8+
333-
if (class_exists('Symfony\Component\DependencyInjection\Loader\XmlFileLoader')) {
331+
if (\class_exists('Symfony\Component\DependencyInjection\Loader\XmlFileLoader')) {
334332
$formats[] = 'config/full.xml';
335333
}
336334

0 commit comments

Comments
 (0)