24 lines
657 B
PHP
24 lines
657 B
PHP
<?php
|
|
|
|
namespace App\EventPaymentModules\DTO;
|
|
|
|
use App\Models\EventParticipant;
|
|
|
|
/**
|
|
* Eingabe für {@see \App\EventPaymentModules\EventPaymentModule::getRefundData()}.
|
|
*
|
|
* Wie überall in dieser Schicht wird die Konfiguration hereingereicht, statt sie selbst zu holen --
|
|
* die Module bleiben damit frei von Datenbankzugriffen und ohne DB testbar.
|
|
*/
|
|
final class GetRefundDataRequest
|
|
{
|
|
/**
|
|
* @param array<string, mixed> $configuration aufgelöste Konfiguration des Zahlungsmoduls
|
|
*/
|
|
public function __construct(
|
|
public readonly EventParticipant $participant,
|
|
public readonly array $configuration = [],
|
|
) {
|
|
}
|
|
}
|