File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
tests/Unit/DependencyInjection Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change 1313use Symfony \Component \Config \Definition \ConfigurationInterface ;
1414use Symfony \Component \Config \Definition \Exception \InvalidConfigurationException ;
1515use 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
You can’t perform that action at this time.
0 commit comments