Skip to content

Commit acfa4b4

Browse files
authored
Fix syntax error
1 parent 723ef8e commit acfa4b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

messenger.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2094,7 +2094,7 @@ is it up or down. It is possible to do so by dispatching a
20942094
public function ping(): void
20952095
{
20962096
// An HttpExceptionInterface is thrown on 3xx/4xx/5xx
2097-
$this->bus->dispatch(new PingWebhookMessage('GET', 'https://example.com/status');
2097+
$this->bus->dispatch(new PingWebhookMessage('GET', 'https://example.com/status'));
20982098

20992099
// Ping, but does not throw on 3xx/4xx/5xx
21002100
$this->bus->dispatch(new PingWebhookMessage('GET', 'https://example.com/status', throw: false);

0 commit comments

Comments
 (0)