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

18 lines
275 B
PHP
Raw Permalink Normal View History

2025-06-29 18:33:18 +02:00
<?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
) {
}
}