Skip to content

Commit a3c7fa8

Browse files
committed
DebugConfigResolverCommand.php: PHP CS Fixer
1 parent 1050275 commit a3c7fa8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bundle/Core/Command/DebugConfigResolverCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
116116
if (!array_is_list($parameterData)) {
117117
throw new InvalidArgumentException('--sort', "'$parameter' is a hash but sort can be used only on a list (an array with numeral keys incremented from zero).");
118118
}
119-
for ($i=0, $count = count($parameterData); $i < $count; $i++) {
119+
for ($i = 0, $count = count($parameterData); $i < $count; ++$i) {
120120
if (!array_key_exists($sort, $parameterData[$i])) {
121121
throw new InvalidArgumentException('--sort', "'$sort' property doesn't exist on each '$parameter' list item.");
122122
}

0 commit comments

Comments
 (0)