style: apply php-cs-fixer formatting (PSR-12)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
ext.jeremy.guillot@maxicoffee.domains
2026-03-09 20:46:59 +01:00
parent dae215dd3d
commit 7506a7a3c1
234 changed files with 447 additions and 370 deletions

View File

@@ -8,5 +8,6 @@ readonly class ChapterEditData
public string $id,
public ?string $title = null,
public ?int $volume = null
) {}
) {
}
}

View File

@@ -8,5 +8,6 @@ readonly class CheckMonitoredMangas
{
public function __construct(
public ?DateTimeImmutable $since = null
) {}
) {
}
}

View File

@@ -15,5 +15,6 @@ readonly class CreateManga
public ?string $externalId,
public ?string $imageUrl,
public ?float $rating
) {}
}
) {
}
}

View File

@@ -6,5 +6,6 @@ readonly class CreateMangaFromMangadex
{
public function __construct(
public string $externalId
) {}
}
) {
}
}

View File

@@ -8,5 +8,6 @@ readonly class DeleteCbz implements CommandInterface
{
public function __construct(
public string $chapterId
) {}
) {
}
}

View File

@@ -8,5 +8,6 @@ readonly class DeleteChapter implements CommandInterface
{
public function __construct(
public string $chapterId
) {}
) {
}
}

View File

@@ -8,5 +8,6 @@ readonly class DeleteManga implements CommandInterface
{
public function __construct(
public string $mangaId
) {}
) {
}
}

View File

@@ -14,5 +14,6 @@ readonly class EditManga
public ?string $status = null,
public ?float $rating = null,
public ?array $alternativeSlugs = null
) {}
) {
}
}

View File

@@ -9,5 +9,6 @@ readonly class EditMultipleChapters
*/
public function __construct(
public array $chapters
) {}
) {
}
}

View File

@@ -8,5 +8,6 @@ readonly class FetchMangaChapters
{
public function __construct(
public MangaId $mangaId
) {}
) {
}
}

View File

@@ -8,5 +8,6 @@ readonly class ImportChapter
public string $mangaId,
public float $chapterNumber,
public string $fileBinary
) {}
) {
}
}

View File

@@ -8,9 +8,6 @@ readonly class ImportVolume
public string $mangaId,
public int $volumeNumber,
public string $fileBinary
) {}
) {
}
}

View File

@@ -8,5 +8,6 @@ readonly class RefreshMangaChapters
{
public function __construct(
public MangaId $mangaId
) {}
) {
}
}

View File

@@ -9,5 +9,6 @@ readonly class ToggleMangaMonitoring
public function __construct(
public MangaId $mangaId,
public bool $enabled
) {}
) {
}
}