We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95df39f commit 0f9a5f5Copy full SHA for 0f9a5f5
2 files changed
src/Activity.php
@@ -84,7 +84,7 @@ public function webhookUrl(string $signalMethod = ''): string
84
85
$signal = Str::kebab($signalMethod);
86
return route("workflows.signal.{$workflow}.{$signal}", [
87
- 'workflowId' => $this->storedWorkflow->id
+ 'workflowId' => $this->storedWorkflow->id,
88
]);
89
}
90
tests/Unit/WebhooksTest.php
@@ -314,7 +314,8 @@ public function testResolveNamedParametersUsesDefaults()
314
public function testWebhookRegistration()
315
{
316
$routeMock = Mockery::mock();
317
- $routeMock->shouldReceive('name')->andReturnSelf();
+ $routeMock->shouldReceive('name')
318
+ ->andReturnSelf();
319
320
Route::shouldReceive('post')
321
->times(4)
0 commit comments