Skip to content

Commit e49aaf6

Browse files
author
Corey McCormick
committed
Fix namespaces in readme
1 parent 8cbfc0a commit e49aaf6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ The cacheable trait may be used by adding the trait to the Eloquent model of you
3636
namespace App;
3737

3838
use Illuminate\Database\Eloquent\Model;
39-
use App\Cache\Cacheable;
39+
use SimpleSoftwareIO\Cache\Cacheable;
4040

4141
class User extends Model
4242
{
@@ -56,7 +56,7 @@ You may adjust the default cache length by modifying the `cacheLength` property
5656
namespace App;
5757

5858
use Illuminate\Database\Eloquent\Model;
59-
use App\Cache\Cacheable;
59+
use SimpleSoftwareIO\Cache\Cacheable;
6060

6161
class User extends Model
6262
{
@@ -73,7 +73,7 @@ The configured cache store may also be adjusted by modifying the `cacheStore` pr
7373
namespace App;
7474

7575
use Illuminate\Database\Eloquent\Model;
76-
use App\Cache\Cacheable;
76+
use SimpleSoftwareIO\Cache\Cacheable;
7777

7878
class User extends Model
7979
{
@@ -90,7 +90,7 @@ Cache busting will automatically invalid the cache when an `insert/update/delete
9090
namespace App;
9191

9292
use Illuminate\Database\Eloquent\Model;
93-
use App\Cache\Cacheable;
93+
use SimpleSoftwareIO\Cache\Cacheable;
9494

9595
class User extends Model
9696
{

0 commit comments

Comments
 (0)