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
Copy file name to clipboardExpand all lines: UPGRADE.md
+24-1Lines changed: 24 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ If you were depending on functionality from `nexmo/laravel` you may now use it d
38
38
```php
39
39
use Vonage\Client;
40
40
41
-
$vonageClient = app()->make(Client::class);
41
+
$vonageClient = app(Client::class);
42
42
```
43
43
44
44
If you were using the `Nexmo` facade from `nexmo/laravel`, you should update your code to use the `Vonage` facade instead:
@@ -81,6 +81,29 @@ VONAGE_SMS_FROM=15556666666
81
81
82
82
Once you have defined this environment variable, you may remove the `nexmo` configuration entry from your `services` configuration file.
83
83
84
+
### Notification Channel Name
85
+
86
+
The notification channel's name has been updated to `vonage`. Therefore, you should update all `nexmo` channel references in the `via` methods of your notifications to `vonage`:
0 commit comments