🆙 More refactored 🆙

This commit is contained in:
Remco
2026-01-20 20:17:04 +01:00
parent 1e84468d49
commit fccf4c2116
14 changed files with 169 additions and 83 deletions
@@ -0,0 +1,35 @@
<?php
namespace App\Services\Parsers;
class ExternalTextsParser
{
public function getBadgeData(string $code): array
{
return [
'image' => null,
'nitro' => [
'title' => null,
'description' => null,
],
'flash' => [
'title' => null,
'description' => null,
],
];
}
public function updateNitroBadgeTexts(string $code, string $title, string $description): void
{
}
public function updateFlashBadgeTexts(string $code, string $title, string $description): void
{
}
public function getBadgeImageUrl(string $code): string
{
return '';
}
}