Skip to content

Commit

Permalink
Merge pull request #30 from spinen/develop
Browse files Browse the repository at this point in the history
Fix code example formatting
  • Loading branch information
ssfinney authored Jun 19, 2020
2 parents b9271b4 + 4f503ee commit 95d8c2b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.**

Expand Down

0 comments on commit 95d8c2b

Please sign in to comment.