8000 Pr/workflow name as graph label by shdev · Pull Request #25148 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

Pr/workflow name as graph label #25148

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 8 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension 8000

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update WorkflowDumpCommand.php
  • Loading branch information
shdev authored and fabpot committed Dec 11, 2017
commit 9d0dda3437ee6b8027f5f2d310e7f7be2378df0e
2 changes: 0 additions & 2 deletions src/Symfony/Bundle/FrameworkBundle/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
CHANGELOG
=========

<<<<<<< HEAD
4.1.0
-----

* Allowed to pass an optional `LoggerInterface $logger` instance to the `Router`
* Added a new `parameter_bag` service with related autowiring aliases to access parameters as-a-service
* Allowed the `Router` to work with any PSR-11 container
* allowed to pass an optional `LoggerInterface $logger` instance to the `Router`
* added option in workflow dump command to label graph with a custom label

4.0.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
$options = array();
$label = $input->getOption('label');
if (null !== $label && '' !== trim($label)) {
$options = array('graph' => array('label' => $input->getOption('label')));
$options = array('graph' => array('label' => $label));
}
$output->writeln($dumper->dump($workflow->getDefinition(), $marking, $options));
}
Expand Down
0