<?php
namespace IlluminateFoundationQueue;
use IlluminateBusQueueable as QueueableByBus;
use IlluminateFoundationBusDispatchable;
use IlluminateQueueInteractsWithQueue;
use IlluminateQueueSerializesModels;
trait Queueable
{
use Dispatchable, InteractsWithQueue, QueueableByBus, SerializesModels;
}