Sort of working beta

This commit is contained in:
2025-02-06 17:30:45 +01:00
parent 5f42c707eb
commit 2ef114e154
97 changed files with 3093 additions and 106 deletions

View File

@ -0,0 +1,25 @@
<?php
namespace App\Notification\NotificationBody\Hellcase;
use App\Browser\Jobs\Hellcase\HellcaseLoginQrCode;
use App\Notification\NotificationBody;
class HellcaseNotificationDailyFreeBody extends NotificationBody {
private string $content = "Vous avez remporté un cadeau gratuit sur Hellcase !";
/**
* @inheritDoc
*/
public function toMarkdownString(): string {
return $this->content;
}
/**
* @inheritDoc
*/
public function toString(): string {
return $this->content;
}
}

View File

@ -0,0 +1,25 @@
<?php
namespace App\Notification\NotificationBody\Hellcase;
use App\Browser\Jobs\Hellcase\HellcaseLoginQrCode;
use App\Notification\NotificationBody;
class HellcaseNotificationLoginBody extends NotificationBody {
private string $content = "Veuillez utiliser steam guard pour vous connecter à Hellcase.\nLe QR code se rafrachira toutes les ". HellcaseLoginQrCode::QR_CODE_VALIDITY ." secondes.";
/**
* @inheritDoc
*/
public function toMarkdownString(): string {
return $this->content;
}
/**
* @inheritDoc
*/
public function toString(): string {
return $this->content;
}
}