@@ -2250,13 +2250,19 @@ Name of the workflow you want to create.
22502250audit_trail
22512251"""""""""""
22522252
2253- **type **: ``array ``
2253+ **type **: ``bool ``
2254+
2255+ If set to ``true ``, the:class: `Symfony\\ Component\\ Workflow\\ EventListener\\ AuditTrailListener `
2256+ will be enabled.
22542257
22552258initial_place
22562259"""""""""""""
22572260
22582261**type **: ``string `` **default **: ``null ``
22592262
2263+ One of the ``places `` or ``null ``. If not null and the supported object is not
2264+ already initialized via the workflow, this place will be set.
2265+
22602266marking_store
22612267"""""""""""""
22622268
@@ -2274,11 +2280,16 @@ places
22742280
22752281**type **: ``array ``
22762282
2283+ All available places (**type **: ``string ``) for the workflow configuration.
2284+
22772285supports
22782286""""""""
22792287
22802288**type **: ``string `` | ``array ``
22812289
2290+ The FQCN (fully-qualified class name) of the object supported by the workflow
2291+ configuration or an array of FQCN if multiple objects are supported.
2292+
22822293support_strategy
22832294""""""""""""""""
22842295
@@ -2291,11 +2302,13 @@ transitions
22912302
22922303Each marking store can define any of these options:
22932304
2294- * ``from `` (**type **: ``string ``)
2295- * ``guard `` (**type **: ``string ``) a:doc: `ExpressionLanguage </components/expression_language >`
2296- compatible expression to block the transition
2297- * ``name `` (**type **: ``string ``)
2298- * ``to `` (**type **: ``string ``)
2305+ * ``from `` (**type **: ``string `` or ``array ``) value from the ``places ``,
2306+ multiple values are allowed for both ``workflow `` and ``state_machine ``;
2307+ * ``guard `` (**type **: ``string ``) an:doc: `ExpressionLanguage </components/expression_language >`
2308+ compatible expression to block the transition;
2309+ * ``name `` (**type **: ``string ``) the name of the transition;
2310+ * ``to `` (**type **: ``string `` or ``array ``) value from the ``places ``,
2311+ multiple values are allowed only for ``workflow ``.
22992312
23002313.. _reference-workflows-type :
23012314