From 60634146fef4eadda8fb9b1c724282a7a489c72f Mon Sep 17 00:00:00 2001 From: HolgerHatGarKeineNode Date: Fri, 5 Dec 2025 23:02:10 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=9B=A0=EF=B8=8F=20Use=20camel=20case=20fo?= =?UTF-8?q?r=20meetup=20names=20in=20`ExtractLogos`=20command=20output=20f?= =?UTF-8?q?ilenames?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Console/Commands/Database/ExtractLogos.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/Database/ExtractLogos.php b/app/Console/Commands/Database/ExtractLogos.php index d30ec04..b7e0655 100644 --- a/app/Console/Commands/Database/ExtractLogos.php +++ b/app/Console/Commands/Database/ExtractLogos.php @@ -36,7 +36,7 @@ class ExtractLogos extends Command if ($logo) { if (file_exists($logo->getPath())) { Storage::disk('public') - ->put('00_logos/'.$meetup->name.'.'.$logo->extension, file_get_contents($logo->getPath())); + ->put('00_logos/'.str($meetup->name)->camel().'.'.$logo->extension, file_get_contents($logo->getPath())); } } }