improve casing
This commit is contained in:
parent
89ace08139
commit
f16267dc41
|
|
@ -25,7 +25,7 @@ Once the package is installed, you can publish the configuration file using:
|
|||
php artisan vendor:publish --provider="BeyondCode\LaravelWebSockets\WebSocketsServiceProvider" --tag="config"
|
||||
```
|
||||
|
||||
To start the websocket server, use:
|
||||
To start the WebSocket server, use:
|
||||
|
||||
```
|
||||
php artisan websockets:serve
|
||||
|
|
|
|||
|
|
@ -39,12 +39,12 @@ return [
|
|||
],
|
||||
|
||||
/*
|
||||
* The maximum request size in kilobytes that is allowed for an incoming websocket request.
|
||||
* The maximum request size in kilobytes that is allowed for an incoming WebSocket request.
|
||||
*/
|
||||
'max_request_size_in_kb' => 250,
|
||||
|
||||
/*
|
||||
* Define the optional SSL context for your websocket connections.
|
||||
* Define the optional SSL context for your WebSocket connections.
|
||||
* You can see all available options at: http://php.net/manual/en/context.ssl.php
|
||||
*/
|
||||
'ssl' => [
|
||||
|
|
|
|||
Loading…
Reference in New Issue