Skip to content
This repository was archived by the owner on Apr 7, 2021. It is now read-only.

Commit b5ce801

Browse files
authored
Merge pull request #16 from funkjedi/funkjedi-patch-1
Corrections to namespace import in examples
2 parents 026d7b9 + 91b7c57 commit b5ce801

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ to and define a `protected $encrypted` array containing a list of the attributes
153153
For example:
154154

155155
```php
156-
use AustinHeap\Database\Encryption;
156+
use AustinHeap\Database\Encryption\Traits\HasEncryptedAttributes;
157157

158158
class User extends Eloquent {
159159
use HasEncryptedAttributes;
@@ -175,7 +175,7 @@ converted to JSON and then encrypted.
175175
For example:
176176

177177
```php
178-
use AustinHeap\Database\Encryption;
178+
use AustinHeap\Database\Encryption\Traits\HasEncryptedAttributes;
179179

180180
class User extends Eloquent {
181181
use HasEncryptedAttributes;

0 commit comments

Comments
 (0)