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

18 lines
351 B
PHP
Raw Permalink Normal View History

2025-06-29 09:48:45 +02:00
<?php
namespace App\Events;
use App\Models\Article;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
2025-07-05 18:26:04 +02:00
class NewArticleFetched
2025-06-29 09:48:45 +02:00
{
use Dispatchable, InteractsWithSockets, SerializesModels;
public function __construct(public Article $article)
{
}
}