Untitled

Anonymous
plain_text
08/19/2023 2:22 PM
236 B
19
Indexable
use Workflow\WorkflowStub;

$workflow = WorkflowStub::make(MyWorkflow::class);
$workflow->start('world');
while ($workflow->running());
$workflow->output();
=> 'Hello, world!'
Editor is loading...