From aa93507ad7c9f689f4c37bc16ecaa79563eaa328 Mon Sep 17 00:00:00 2001 From: Enno Woortmann Date: Wed, 23 Mar 2022 15:23:42 +0100 Subject: [PATCH] fix readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e76cb81..1c19ae7 100644 --- a/README.md +++ b/README.md @@ -514,7 +514,7 @@ Summary: In this example the **AcceptOpenSuggestionForSong** step found a matching open suggestion and successfully accepted the suggestion. Consequently, the further workflow execution is skipped. -### Custom-output-formatter +### Custom output formatter The output of the `debug` method can be controlled via an implementation of the `OutputFormat` interface. By default a string representation of the execution will be returned (just like the example outputs). @@ -527,7 +527,7 @@ Currently the following additional formatters are implemented: | `WorkflowGraph` | Creates a SVG file containing a graph which represents the workflow execution. The generated image will be stored in the provided target directory. Requires `dot` executable.
Example:
`$result->debug(new WorkflowGraph('/var/log/workflow/graph'));` | | `GraphViz` | Returns a string containing [GraphViz](https://graphviz.org/) code for a graph representing the workflow execution.
Example:
`$result->debug(new GraphViz());`| -## Tests ## +## Tests The library is tested via [PHPUnit](https://phpunit.de/).