Files
onboard/app/Services/Reports/ReportSection.php
2026-06-21 23:40:55 +09:00

17 lines
450 B
PHP

<?php
namespace App\Services\Reports;
readonly class ReportSection
{
/**
* @param array<string,string> $columns ключ колонки => подпись
* @param array<int,array<string,mixed>> $rows строки данных, ключи соответствуют ключам $columns
*/
public function __construct(
public string $title,
public array $columns,
public array $rows,
) {}
}