From 9b5186e5b69fcd7f6e90cdf55b48991a2a637be1 Mon Sep 17 00:00:00 2001 From: Kaan Karaca Date: Sat, 6 May 2017 17:26:39 +0300 Subject: [PATCH] Update readme.md No need apostrophe for modify providers and aliases. --- readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index b825161..40376b1 100644 --- a/readme.md +++ b/readme.md @@ -33,7 +33,7 @@ Modify the `providers` array in `config/app.php` to include the `BootFormsServic ```php 'providers' => [ //... - 'AdamWathan\BootForms\BootFormsServiceProvider' + AdamWathan\BootForms\BootFormsServiceProvider::class ], ``` @@ -42,7 +42,7 @@ Add the `BootForm` facade to the `aliases` array in `config/app.php`: ```php 'aliases' => [ //... - 'BootForm' => 'AdamWathan\BootForms\Facades\BootForm' + 'BootForm' => AdamWathan\BootForms\Facades\BootForm::class ], ```