diff --git a/README.md b/README.md index 66a69c4..bb4bd96 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Register the PushNotification service provider by adding it to the providers arr ```php 'providers' => array( ... - 'Davibennun\LaravelPushNotification\LaravelPushNotificationServiceProvider' + Davibennun\LaravelPushNotification\LaravelPushNotificationServiceProvider::class, ) ``` @@ -30,7 +30,7 @@ Alias the PushNotification facade by adding it to the aliases array in the `app/ ```php 'aliases' => array( ... - 'PushNotification' => 'Davibennun\LaravelPushNotification\Facades\PushNotification' + 'PushNotification' => Davibennun\LaravelPushNotification\Facades\PushNotification::class, ) ```