8000 Updated the styles of the container commands by javiereguiluz · Pull Request #15983 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

Updated the styles of the container commands #15983

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
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading 8000
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Don't trigger a deprecation message
  • Loading branch information
javiereguiluz committed Oct 1, 2015
commit a5c7af3bdfd56f1e826dd0ede66901445a57b6bb
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ protected function describeContainerDefinition(Definition $definition, array $op
}
$tableRows[] = array('Tags', $tagInformation);

$tableRows[] = array('Scope', $definition->getScope());
$tableRows[] = array('Scope', $definition->getScope(false));
$tableRows[] = array('Public', $definition->isPublic() ? 'yes' : 'no');
$tableRows[] = array('Synthetic', $definition->isSynthetic() ? 'yes' : 'no');
$tableRows[] = array('Lazy', $definition->isLazy() ? 'yes' : 'no');
Expand Down
0