You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -53,18 +53,19 @@ This will create a `config/pusher.php` file in your app that you can modify to s
53
53
54
54
This option `default` is where you may specify which of the connections below you wish to use as your default connection for all work. Of course, you may use many connections at once using the manager class. The default value for this setting is `main`.
55
55
56
-
#### Pusher Connections
56
+
#### Channels Connections
57
57
58
58
This option `connections` is where each of the connections are setup for your application. Example configuration has been included, but you may add as many connections as you would like.
59
59
60
60
#### Encrypted Channels
61
-
To enable [end to end encrypted channels](https://pusher.com/docs/client_api_guide/client_encrypted_channels), you need to uncomment a line from the Pusher config file
61
+
62
+
To enable [end to end encrypted channels](https://pusher.com/docs/client_api_guide/client_encrypted_channels), you need to uncomment a line from the Channels config file
// This example is simple and there are far more methods available.
103
104
```
104
105
105
-
The Pusher manager will behave like it is a `Pusher`. If you want to call specific connections, you can do that with the connection method:
106
+
The `PusherManager` will behave like it is a `Pusher`. If you want to call specific connections, you can do that with the connection method:
106
107
107
108
```php
108
109
use Pusher\Laravel\Facades\Pusher;
@@ -148,7 +149,7 @@ App::make('Foo')->bar();
148
149
149
150
## Documentation
150
151
151
-
There are other classes in this package that are not documented here. This is because the package is a Laravel wrapper of [the official Pusher package](https://github.com/pusher/pusher-php-server).
152
+
There are other classes in this package that are not documented here. This is because the package is a Laravel wrapper of [the official Channels package](https://github.com/pusher/pusher-php-server).
0 commit comments