<?php

namespace Modules\Blog\Events;

use Illuminate\Queue\SerializesModels;

class PostWasCreated
{
    use SerializesModels;

    /**
     * Create a new event instance.
     */
    public function __construct()
    {
        //
    }

    /**
     * Get the channels the event should be broadcast on.
     */
    public function broadcastOn(): array
    {
        return [];
    }
}
