Skip to content

Commit 99095aa

Browse files
keradusfabpot
authored andcommitted
CS fixes
1 parent 73d55d6 commit 99095aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DependencyInjection/FrameworkExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ private function registerProfilerConfiguration(array $config, ContainerBuilder $
226226
'memcached' => 'Symfony\Component\HttpKernel\Profiler\MemcachedProfilerStorage',
227227
'redis' => 'Symfony\Component\HttpKernel\Profiler\RedisProfilerStorage',
228228
);
229-
list($class, ) = explode(':', $config['dsn'], 2);
229+
list($class) = explode(':', $config['dsn'], 2);
230230
if (!isset($supported[$class])) {
231231
throw new \LogicException(sprintf('Driver "%s" is not supported for the profiler.', $class));
232232
}

0 commit comments

Comments
 (0)