Skip to content

Commit c1fd166

Browse files
committed
Minor reword
1 parent 7c26fe2 commit c1fd166

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

workflow/dumping-workflows.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ How to Dump Workflows
66

77
To help you debug your workflows, you can dump a representation of your workflow
88
with the use of a ``DumperInterface``. Use the ``GraphvizDumper`` to create a
9-
SVG image of the workflow defined above::
9+
PNG or SVG image of the workflow defined above::
1010

1111
// dump-graph.php
1212
$dumper = new GraphvizDumper();
@@ -16,6 +16,9 @@ SVG image of the workflow defined above::
1616
1717
$ php dump-graph.php | dot -Tsvg -o graph.svg
1818
19+
# run this command if you prefer PNG images:
20+
# $ php dump-graph.php | dot -Tpng -o graph.png
21+
1922
The result will look like this:
2023

2124
.. image:: /_images/components/workflow/blogpost.png

0 commit comments

Comments
 (0)