feat: firsts unit tests for ScrapeChapterHandler.php

This commit is contained in:
ext.jeremy.guillot@maxicoffee.domains
2025-02-03 10:38:53 +01:00
parent 21fcdd1084
commit 89570ad951
31 changed files with 1105 additions and 291 deletions

View File

@@ -1,11 +1,13 @@
<?php
namespace App\Domain\Scraping\Application\Command\ScrapeChapter;
namespace App\Domain\Scraping\Application\Command;
class ScrapeChapterCommand
readonly class ScrapeChapter
{
public function __construct(
public readonly string $chapterId,
public readonly string $sourceId
) {}
public string $chapterId,
public string $sourceId,
public string $mangaId
) {
}
}