22 lines
642 B
PHP
22 lines
642 B
PHP
<?php
|
|
|
|
namespace App\Domains\Event\Actions\ParseBankStatement;
|
|
|
|
use App\Models\Event;
|
|
use Illuminate\Http\UploadedFile;
|
|
|
|
class ParseBankStatementRequest
|
|
{
|
|
/**
|
|
* @param array<string, mixed> $configuration Tenant-Konfiguration der Überweisung. Wird hereingereicht
|
|
* statt hier geholt -- den DB-Zugriff macht der Controller
|
|
* über das Repository.
|
|
*/
|
|
public function __construct(
|
|
public readonly Event $event,
|
|
public readonly ?UploadedFile $file,
|
|
public readonly array $configuration = [],
|
|
) {
|
|
}
|
|
}
|