File tree Expand file tree Collapse file tree 5 files changed +35
-0
lines changed
Expand file tree Collapse file tree 5 files changed +35
-0
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ Compatible with every [currently supported Symfony versions](https://symfony.com
3434 - [ ConstantOutputTask] ( doc/reference/tasks/constant_output_task.md )
3535 - [ ConstantIterableOutputTask] ( doc/reference/tasks/constant_iterable_output_task.md )
3636 - [ DebugTask] ( doc/reference/tasks/debug_task.md )
37+ - [ DieTask] ( doc/reference/tasks/die_task.md )
3738 - [ DummyTask] ( doc/reference/tasks/dummy_task.md )
3839 - [ EventDispatcherTask] ( doc/reference/tasks/event_dispatcher_task.md )
3940 - Data manipulation and transformations
Original file line number Diff line number Diff line change @@ -19,3 +19,8 @@ Possible outputs
1919----------------
2020
2121` any ` : re-output given input
22+
23+ Example
24+ ----------------
25+
26+ https://github.com/cleverage/process-bundle-ui-demo/blob/main/config/packages/process/demo.debug.yaml
Original file line number Diff line number Diff line change 1+ DieTask
2+ =========
3+
4+ Stops the process brutally
5+
6+
7+ Task reference
8+ --------------
9+
10+ * ** Service** : ` CleverAge\ProcessBundle\Task\Debug\DieTask `
11+
12+ Accepted inputs
13+ ---------------
14+
15+ ` any `
16+
17+ Possible outputs
18+ ----------------
19+
20+ None
21+
22+ Example
23+ ----------------
24+
25+ https://github.com/cleverage/process-bundle-ui-demo/blob/main/config/packages/process/demo.die.yaml
Original file line number Diff line number Diff line change 1919
2020/**
2121 * Dump the content of the input
22+ *
23+ * @example https://github.com/cleverage/process-bundle-ui-demo/blob/main/config/packages/process/demo.debug.yaml
2224 */
2325class DebugTask implements TaskInterface
2426{
Original file line number Diff line number Diff line change 2020 * Class DieTask
2121 *
2222 * Stops the process brutally
23+ *
24+ * @example https://github.com/cleverage/process-bundle-ui-demo/blob/main/config/packages/process/demo.die.yaml
2325 */
2426class DieTask implements TaskInterface
2527{
You can’t perform that action at this time.
0 commit comments