You've already forked Epicnabbo-Catalogus-Updated-Daily
36 lines
731 B
PHP
36 lines
731 B
PHP
<?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 '';
|
|
}
|
|
}
|
|
|