Skip to content

Commit

Permalink
Merge pull request #18 from android-com-pl/analysis-lZLJkd
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
rafaucau committed Jun 16, 2023
2 parents bfc5e2b + 7185c09 commit 2d802c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Middleware/LSCachePurgeMiddleware.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ protected function processPurge(
if (! empty($purgeList)) {
$purgeList = explode("\n", $purgeList);
// Get only valid items
$purgeList = array_filter($purgeList, fn($item) => Str::startsWith($item, ['/', 'tag=']));
$purgeList = array_filter($purgeList, fn ($item) => Str::startsWith($item, ['/', 'tag=']));
$purgeParams = array_merge($purgeParams, $purgeList);
}

Expand Down

0 comments on commit 2d802c3

Please sign in to comment.