fedi-feed-router/backend/app/Events/ExceptionLogged.php

17 lines
275 B
PHP

<?php
namespace App\Events;
use App\Models\Log;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class ExceptionLogged
{
use Dispatchable, SerializesModels;
public function __construct(
public Log $log
) {
}
}