{% extends '@WebProfiler/Profiler/layout.html.twig' %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block toolbar %} {% if collector.callsCount > 0 %} {% set icon %} {{ source('@WebProfiler/Icon/workflow.svg') }} {% endset %} {% set text %}
{% endset %} {{ include('@WebProfiler/Profiler/toolbar_item.html.twig', { link: profiler_url }) }} {% endif %} {% endblock %} {% block menu %} {{ source('@WebProfiler/Icon/workflow.svg') }} Workflow {% endblock %} {% block panel %}There are no workflows configured.
                            {{ data.dump|raw }}
                            {% for nodeId, events in data.listeners %}
                                click {{ nodeId }} showNodeDetails{{ collector.hash(name) }}
                            {% endfor %}
                        
                        View on mermaid.live
                        | # | Call | Args | Return | Exception | Duration | 
|---|---|---|---|---|---|
| {{ loop.index }} | {{ call.method }}(){% if call.previousMarking ?? null %}Previous marking: {{ profiler_dump(call.previousMarking) }} {% endif %} | {{ profiler_dump(call.args) }} | {% if call.return is defined %}
                                                {% if call.return is same as true %} true{% elseif call.return is same as false %}false{% else %}
                                                    {{ profiler_dump(call.return) }}
                                                {% endif %}
                                            {% endif %} | {% if call.exception is defined %} {{ profiler_dump(call.exception) }} {% endif %} | {{ '%0.2f ms'|format(call.duration) }} |