Skip to content

Commit

Permalink
eejit
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanmitchell committed Feb 23, 2024
1 parent 592f285 commit 6e84e1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/StaticCaching/NoCache/Session.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public function regions(): Collection

public function region(string $key): Region
{
if ($this->regions->contains($key) && ($region = Cache::get('nocache::region.'.$key))) {
if ($this->regions->contains($key) && ($region = StaticCache::cacheStore()->get('nocache::region.'.$key))) {
return $region;
}

Expand Down

0 comments on commit 6e84e1a

Please sign in to comment.