You've already forked Epicnabbo-Catalogus-Updated-Daily
🆙 More refactored 🆙
This commit is contained in:
@@ -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 '';
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user