8000 [TwigBundle] Add command to list twig functions, filters, globals and tests by Seldaek · Pull Request #9818 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[TwigBundle] Add command to list twig functions, filters, globals and tests #9818

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 8000
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Rename twig:doc to twig:debug
  • Loading branch information
Seldaek committed Dec 20, 2013
commit 21c66bdf2abca9456a18eeafd0f68bdaa6933eca
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@
*
* @author Jordi Boggiano <j.boggiano@seld.be>
*/
class DocCommand extends ContainerAwareCommand
class DebugCommand extends ContainerAwareCommand
{
protected function configure()
{
$this
->setName('twig:doc')
->setName('twig:debug')
->setDefinition(array(
new InputArgument('filter', InputArgument::OPTIONAL, 'Show details for all entries matching this filter'),
new InputOption('format', null, InputOption::VALUE_REQUIRED, 'Output format: text or json', 'text'),
Expand Down
0