20 lines
407 B
PHP
20 lines
407 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Toby\Listeners;
|
|
|
|
use Toby\Events\VacationRequestStateChanged;
|
|
|
|
class CreateVacationRequestActivity
|
|
{
|
|
public function handle(VacationRequestStateChanged $event): void
|
|
{
|
|
$event->vacationRequest->activities()->create([
|
|
"from" => $event->from,
|
|
"to" => $event->to,
|
|
"user_id" => $event->user?->id,
|
|
]);
|
|
}
|
|
}
|