We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14b2f20 commit f3ea8c1Copy full SHA for f3ea8c1
1 file changed
src/Stache/Stores/Store.php
@@ -209,7 +209,10 @@ public function handleFileChanges()
209
// Get all the deleted files.
210
// This would be any paths that exist in the cached array that aren't there anymore.
211
$keys = $this->paths()->flip();
212
- $deleted = $existing->keys()->map(fn ($path) => $keys->get($path))->diff($files->keys()->map(fn ($path) => $keys->get($path)))->values();
+ $deleted = $existing->keys()
213
+ ->map(fn ($path) => $keys->get($path))
214
+ ->diff($files->keys()->map(fn ($path) => $keys->get($path)))
215
+ ->values();
216
217
// If there are no modified or deleted files, there's nothing to update.
218
if ($modified->isEmpty() && $deleted->isEmpty()) {
0 commit comments