fedi-feed-router/app/Events/ArticleApproved.php
2025-07-10 14:57:10 +02:00

17 lines
288 B
PHP

<?php
namespace App\Events;
use App\Models\Article;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class ArticleApproved
{
use Dispatchable, SerializesModels;
public function __construct(public Article $article)
{
//
}
}