for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Anfischer\Foundation\Job;
use Illuminate\Queue\SerializesModels;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Bus\Queueable;
/**
* An abstract Job that can be managed with a queue
* when extended the job will be queued by default.
*/
class QueueableJob extends Job implements ShouldQueue
{
use SerializesModels;
Illuminate\Queue\SerializesModels
Anfischer\Foundation\Job\QueueableJob
$id
$class
$relations
use InteractsWithQueue;
use Queueable;
}