17 lines
378 B
PHP
17 lines
378 B
PHP
<?php
|
|
|
|
namespace App\Domains\Event\Actions\SendMissingPaymentMails;
|
|
|
|
use App\Models\Event;
|
|
use App\Repositories\EventParticipantRepository;
|
|
use Illuminate\Http\Request;
|
|
|
|
class SendMissingPaymentMailsRequest {
|
|
function __construct(
|
|
public Event $event,
|
|
public EventParticipantRepository $eventParticipants,
|
|
public Request $httpRequest
|
|
) {
|
|
}
|
|
}
|