17 lines
450 B
PHP
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,
|
|
) {}
|
|
}
|