- Messenger, Mercure
- chapter download flow (lelscan only)
This commit is contained in:
Jérémy Guillot
2024-06-13 18:11:11 +02:00
parent f88fa2c232
commit bc85649789
24 changed files with 744 additions and 78 deletions

View File

@@ -0,0 +1,18 @@
<?php
namespace App\Message;
class DownloadChapter
{
private int $chapterId;
public function __construct(int $chapterId)
{
$this->chapterId = $chapterId;
}
public function getChapterId(): int
{
return $this->chapterId;
}
}