Skip to content

[5.x] Updated the Stache Store to not remove stache items that exist #11863

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

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Stache/Stores/Store.php
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ public function handleFileChanges()

// Get all the deleted files.
// This would be any paths that exist in the cached array that aren't there anymore.
$deleted = $existing->keys()->diff($files->keys())->values();
$deleted = $existing->keys()->map(fn ($path) => $this->getKeyFromPath($path))->diff($files->keys()->map(fn ($path) => $this->getKeyFromPath($path)))->values();

// If there are no modified or deleted files, there's nothing to update.
if ($modified->isEmpty() && $deleted->isEmpty()) {
Expand Down