<?php

namespace $NAMESPACE$;

use Illuminate\Bus\Queueable;
use Illuminate\Foundation\Bus\Dispatchable;

class $CLASS$ implements ShouldQueue
{
    use Dispatchable, Queueable;

    public function __construct()
    {
        //
    }

    public function handle(): void
    {
        //
    }
}
