From 4f503ee2d9343976ab4fa04b52c206020b2caaf0 Mon Sep 17 00:00:00 2001 From: Stephen Finney Date: Fri, 19 Jun 2020 15:51:38 -0400 Subject: [PATCH] Fix code example formatting --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a654374..ea89da9 100644 --- a/README.md +++ b/README.md @@ -33,9 +33,11 @@ The package uses the [auto registration feature](https://laravel.com/docs/5.8/pa Add ```use Spinen\QuickBooks\HasQuickBooksToken;``` to your service container at the top of User.php and also add the trait within the class. For example: -```class User extends Authenticatable +```php +class User extends Authenticatable { - use Notifiable, HasQuickBooksToken;``` + use Notifiable, HasQuickBooksToken; +``` **NOTE: If your ```User``` model is not ```App/User```, then you will need to configure the path in the ```configs/quickbooks.php``` as documented below.**