Skip to content

Commit c0a7639

Browse files
Mir AdnanMir Adnan
authored andcommitted
updated
1 parent 715c55c commit c0a7639

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
@@ -11,7 +11,7 @@ This package adds caching support for **all** query methods.
1111
$ composer require miradnan/laravel-model-caching
1212
```
1313

14-
Each model that will accept query-by-query caching will have to use the `Rennokki\QueryCache\Traits\QueryCacheable` trait.
14+
Each model that will accept query-by-query caching will have to use the `miradnan\QueryCache\Traits\QueryCacheable` trait.
1515

1616
```php
1717
use miradnan\QueryCache\Traits\QueryCacheable;
@@ -147,12 +147,12 @@ modify this function will lead to an overlap.
147147

148148
This can happen in case you are creating your own Builder class for another database drivers or simply to ease out your app query builder for more flexibility.
149149

150-
To solve this, all you have to do is to add the `\Rennokki\QueryCache\Traits\QueryCacheModule` trait and the `\Rennokki\QueryCache\Contracts\QueryCacheModuleInterface` interface to your `Builder` class. Make sure that the model will no longer use the original `QueryCacheable` trait.
150+
To solve this, all you have to do is to add the `\miradnan\QueryCache\Traits\QueryCacheModule` trait and the `\miradnan\QueryCache\Contracts\QueryCacheModuleInterface` interface to your `Builder` class. Make sure that the model will no longer use the original `QueryCacheable` trait.
151151

152152
```php
153-
use Rennokki\QueryCache\Traits\QueryCacheModule;
153+
use miradnan\QueryCache\Traits\QueryCacheModule;
154154
use Illuminate\Database\Query\Builder as BaseBuilder; // the base laravel builder
155-
use Rennokki\QueryCache\Contracts\QueryCacheModuleInterface;
155+
use miradnan\QueryCache\Contracts\QueryCacheModuleInterface;
156156

157157
// MyCustomBuilder.php
158158
class MyCustomBuilder implements QueryCacheModuleInterface

0 commit comments

Comments
 (0)