10000 [Config] Minor fix by nicolas-grekas · Pull Request #23581 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[Config] Minor fix #23581

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 19, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[Config] Minor fix
  • Loading branch information
nicolas-grekas committed Jul 19, 2017
commit fa0b9428c5c895f14f60d7f5544a29aeba725f62
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ private static function throwOnRequiredClass($class)
$props = array(
'file' => $trace[$i]['file'],
'line' => $trace[$i]['line'],
'trace' => array_slice($trace, 0, 1 + $i),
'trace' => array_slice($trace, 1 + $i),
);

foreach ($props as $p => $v) {
Expand Down
0