Stops the process brutally by calling PHP exit. The whole PHP script ends immediately: no following task, flush,
blocking task or process end handling is executed. Intended for debugging only; use StopTask to stop a
process cleanly.
- Service:
CleverAge\ProcessBundle\Task\Debug\DieTask
Input is ignored
None, the script is terminated
This task has no option.
- Terminate right after the first task
# Task configuration level
entry:
service: '@CleverAge\ProcessBundle\Task\ConstantOutputTask'
options:
output: { id: 123 }
outputs: [die]
die:
service: '@CleverAge\ProcessBundle\Task\Debug\DieTask'