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

18 lines
288 B
PHP
Raw Normal View History

2025-07-10 14:57:10 +02:00
<?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)
{
//
}
}