release/v1.3.5 #122

Merged
myrmidex merged 6 commits from release/v1.3.5 into main 2026-08-02 09:18:59 +02:00
2 changed files with 5 additions and 2 deletions
Showing only changes of commit 7d745b036a - Show all commits

View file

@ -19,8 +19,8 @@ public static function extractArticleUrls(string $json): array
return collect($decoded['data']) return collect($decoded['data'])
->pluck('id') ->pluck('id')
->filter(fn($id) => is_int($id) || (is_string($id) && ctype_digit($id))) ->filter(fn ($id) => is_int($id) || (is_string($id) && ctype_digit($id)))
->map(fn($id) => sprintf(self::ARTICLE_URL_TEMPLATE, $id)) ->map(fn ($id) => sprintf(self::ARTICLE_URL_TEMPLATE, $id))
->unique() ->unique()
->values() ->values()
->toArray(); ->toArray();

3
pint.json Normal file
View file

@ -0,0 +1,3 @@
{
"preset": "laravel"
}