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

19 lines
356 B
PHP
Raw Permalink Normal View History

2025-06-29 09:53:45 +02:00
<?php
namespace App\Events;
use App\Models\Article;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class ArticleReadyToPublish
{
use Dispatchable, InteractsWithSockets, SerializesModels;
public function __construct(public Article $article)
{
}
2025-07-03 21:16:22 +02:00
}