Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cache refactor #452

Open
wants to merge 13 commits into
base: release/10.0.0
Choose a base branch
from
Prev Previous commit
Next Next commit
updating cache and helpers
  • Loading branch information
iruzevic committed Feb 21, 2025
commit ed35e1a585216fe41f34cc751dc5530f23abf77e
2 changes: 1 addition & 1 deletion src/Helpers/CacheTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public static function setCache(): void

$output = [];

foreach (self::$cacheBuilder as $type => $value) {
foreach (\array_keys(self::$cacheBuilder) as $type) {
$data = \get_transient(self::getCacheTransientName($type));

if (!$data) {
Expand Down