18 lines
412 B
PHP
18 lines
412 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Modules\Import\DTOs;
|
||
|
|
|
||
|
|
final class ImportResult
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* @param array<int, array{row: int, client_number: ?string, message: string}> $errors
|
||
|
|
*/
|
||
|
|
public function __construct(
|
||
|
|
public readonly int $total,
|
||
|
|
public readonly int $created,
|
||
|
|
public readonly int $updated,
|
||
|
|
public readonly int $skipped,
|
||
|
|
public readonly array $errors,
|
||
|
|
) {}
|
||
|
|
}
|