Skip to content

Commit 6341a46

Browse files
committed
✏️ Fix typo in example
1 parent ce34374 commit 6341a46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ protected $routeMiddleware = [
5050
You can use the middleware like any other. For example, to limit a particular endpoint to only 3 concurrent requests by the same user:
5151

5252
``` php
53-
Route::get('/')->middleware('simultaneous:3');
53+
Route::get('/', 'HomeController@index')->middleware('simultaneous:3');
5454
```
5555

5656
### Why not use queues?

0 commit comments

Comments
 (0)