Skip to content

Commit 02192ad

Browse files
Missing semi-colon (#10288)
1 parent 9a51f36 commit 02192ad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

broadcasting.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -901,7 +901,7 @@ If you would like to stop listening to a given event without [leaving the channe
901901
902902
```js
903903
Echo.private(`orders.${this.order.id}`)
904-
.stopListening('OrderShipmentStatusUpdated')
904+
.stopListening('OrderShipmentStatusUpdated');
905905
```
906906
907907
<a name="leaving-a-channel"></a>
@@ -1145,7 +1145,7 @@ return [new Channel($this->user)];
11451145
If you need to determine the channel name of a model, you may call the `broadcastChannel` method on any model instance. For example, this method returns the string `App.Models.User.1` for an `App\Models\User` model with an `id` of `1`:
11461146
11471147
```php
1148-
$user->broadcastChannel()
1148+
$user->broadcastChannel();
11491149
```
11501150
11511151
<a name="model-broadcasting-event-conventions"></a>

0 commit comments

Comments
 (0)