Skip to content

Commit 897796b

Browse files
committed
Fix CS
1 parent d612d53 commit 897796b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DependencyInjection/RemoveEmptyControllerArgumentLocatorsPass.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public function process(ContainerBuilder $container)
4242
} else {
4343
// any methods listed for call-at-instantiation cannot be actions
4444
$reason = false;
45-
list($id, $action) = explode('::', $controller);
45+
[$id, $action] = explode('::', $controller);
4646

4747
if ($container->hasAlias($id)) {
4848
continue;

0 commit comments

Comments
 (0)