Перевод на доменную архитектуру

This commit is contained in:
brusnitsyn
2026-04-26 23:37:50 +09:00
parent 75ca01ffd8
commit f107ebd167
70 changed files with 4656 additions and 2070 deletions

View File

@@ -0,0 +1,22 @@
<?php
namespace App\Application\Reports\DTO;
final readonly class ReportComparisonResult
{
/**
* @param array<string, mixed> $diff
*/
public function __construct(
public string $reportType,
public string $path,
public string $status,
public array $diff,
public int $departmentId,
public int $userId,
public string $periodStart,
public string $periodEnd,
public ?int $reportId,
public float $durationMs,
) {}
}