for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Sfneal\Queueables;
use Illuminate\Bus\Queueable as QueueableTrait;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
/**
* Class Queueable.
*/
abstract class Queueable implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, QueueableTrait, SerializesModels;
Illuminate\Queue\SerializesModels
Sfneal\Queueables\Queueable
$id
$relations
$class
$keyBy
}