From ac869141f3c16066addb2a1b3b58e406387abf4d Mon Sep 17 00:00:00 2001 From: Mohamed Kawsara Date: Thu, 31 Mar 2016 15:50:34 +0300 Subject: [PATCH] Minor change in Readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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, ) ```