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