Skip to content

[Workflow] Improve Workflow Documentation #17803

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

Merged
merged 1 commit into from
Jan 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion workflow.rst
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,10 @@ The configured property will be used via its implemented getter/setter methods b
preferable to not configure it.

A single state marking store uses a ``string`` to store the data. A multiple
state marking store uses an ``array`` to store the data.
state marking store uses an ``array`` to store the data. On both cases if no
state marking store is defined you have to return ``null``. So in the above
example should be defined a return type like ``App\Entity\BlogPost::getCurrentPlace(): ?array``
or like ``App\Entity\BlogPost::getCurrentPlace(): ?string``.

.. tip::

Expand Down