Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
docs: Fix documentation on how to use signals
  • Loading branch information
andrewbroberg authored Sep 17, 2025
commit c951dd6ca17cdb8904b70c70e1b2db3ed10b8025
2 changes: 1 addition & 1 deletion docs/features/signals.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ To trigger a signal on a workflow, call the method on the workflow instance. The
```php
use Workflow\WorkflowStub;

$workflow = WorkflowStub::make(MyWorkflow::class);
$workflow = WorkflowStub::load($workflowId);

$workflow->setReady(true);
```
Expand Down