Skip to content

Commit c662cd1

Browse files
committed
fix indent for dumped private property
1 parent 40491f1 commit c662cd1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1386,10 +1386,10 @@ private function addDeprecatedParameters(): string
13861386
$code = '';
13871387
ksort($deprecated);
13881388
foreach ($deprecated as $param => $deprecation) {
1389-
$code .= ' '.$this->doExport($param)." => ".$this->doExport($deprecation).",\n";
1389+
$code .= ' '.$this->doExport($param)." => ".$this->doExport($deprecation).",\n";
13901390
}
13911391

1392-
$code = "[\n{$code} ]";
1392+
$code = "[\n{$code} ]";
13931393

13941394
return " private deprecatedParameters = {$code};\n";
13951395
}

0 commit comments

Comments
 (0)