Skip to content

Commit

Permalink
Edit README: to match laravel 5.5 SP syntax
Browse files Browse the repository at this point in the history
In laravel 5.5, to declare a Service provider in config/app.php, we shoul use a stitc call with '::'
that why it becomes: 
Firebird\FirebirdServiceProvider::class
instead of 
Firebird\FirebirdServiceProvider
  • Loading branch information
selmo47 committed Oct 1, 2018
1 parent 6554394 commit a26769c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -28,7 +28,7 @@ composer require jacquestvanzuydam/laravel-firebird

Update the `app/config/app.php`, add the service provider:
```json
'Firebird\FirebirdServiceProvider'.
'Firebird\FirebirdServiceProvider::class'.
```

You can remove the original DatabaseServiceProvider, as the original connection factory has also been extended.
Expand Down

0 comments on commit a26769c

Please sign in to comment.