initial commit
This commit is contained in:
15
app/Data/Command/BatchResult.php
Normal file
15
app/Data/Command/BatchResult.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Data\Command;
|
||||
|
||||
class BatchResult
|
||||
{
|
||||
public function __construct(
|
||||
public readonly int $fails,
|
||||
public readonly int $duplicates,
|
||||
public readonly int $success,
|
||||
) {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user