File tree 1 file changed +8
-1
lines changed
1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -263,6 +263,10 @@ protected function checkCooldownAndRemoveIfExpired(Model $instance)
263
263
264
264
protected function checkCooldownAndFlushAfterPersisting (Model $ instance , string $ relationship = "" )
265
265
{
266
+ if (!$ this ->isCachable ()) {
267
+ return ;
268
+ }
269
+
266
270
[$ cacheCooldown , $ invalidatedAt ] = $ instance ->getModelCacheCooldown ($ instance );
267
271
268
272
if (! $ cacheCooldown ) {
@@ -295,6 +299,10 @@ public function isCachable() : bool
295
299
$ isCacheDisabled = ! Container::getInstance ()
296
300
->make ("config " )
297
301
->get ("laravel-model-caching.enabled " );
302
+ if ($ isCacheDisabled ) {
303
+ return false ;
304
+ }
305
+
298
306
$ allRelationshipsAreCachable = true ;
299
307
300
308
if (
@@ -327,7 +335,6 @@ public function isCachable() : bool
327
335
}
328
336
329
337
return $ this ->isCachable
330
- && ! $ isCacheDisabled
331
338
&& $ allRelationshipsAreCachable ;
332
339
}
333
340
You can’t perform that action at this time.
0 commit comments