We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c26fe2 commit c1fd166Copy full SHA for c1fd166
workflow/dumping-workflows.rst
@@ -6,7 +6,7 @@ How to Dump Workflows
6
7
To help you debug your workflows, you can dump a representation of your workflow
8
with the use of a ``DumperInterface``. Use the ``GraphvizDumper`` to create a
9
-SVG image of the workflow defined above::
+PNG or SVG image of the workflow defined above::
10
11
// dump-graph.php
12
$dumper = new GraphvizDumper();
@@ -16,6 +16,9 @@ SVG image of the workflow defined above::
16
17
$ php dump-graph.php | dot -Tsvg -o graph.svg
18
19
+ # run this command if you prefer PNG images:
20
+ # $ php dump-graph.php | dot -Tpng -o graph.png
21
+
22
The result will look like this:
23
24
.. image:: /_images/components/workflow/blogpost.png
0 commit comments