8000 [FrameworkBundle] [Console] added format parameter to ContainerDebugCommand by pulse00 · Pull Request #5740 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[FrameworkBundle] [Console] added format parameter to ContainerDebugCommand #5740

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

Closed
wants to merge 3 commits into from
Closed
Changes from 1 commit
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
Prev Previous commit
added default for showPrivate again
  • Loading branch information
pulse00 committed Oct 13, 2012
commit d0fdf3f4066eeec3c9af7a90a2e9776902c0f8b7
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
}
}

protected function outputServices(OutputInterface $output, $serviceIds, $showPrivate, $format = 'plain')
protected function outputServices(OutputInterface $output, $serviceIds, $showPrivate = false, $format = 'plain')
{
switch ($format) {
case 'plain':
Expand Down
0