Untitled

mail@pastecode.io avatarunknown
plain_text
a month ago
175 B
0
Indexable
Never
use Workflow\WorkflowStub;

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