for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Anfischer\Foundation\Operation;
use Anfischer\Foundation\Job\Concerns\DispatchesJobs;
use Anfischer\Foundation\Job\Concerns\MarshalsJobs;
use Illuminate\Foundation\Bus\DispatchesJobs as BaseDispatcher;
/**
* An abstract Operation to be extended by every self handling operation.
*/
abstract class Operation
{
use MarshalsJobs;
Anfischer\Foundation\Job\Concerns\MarshalsJobs
$name
Anfischer\Foundation\Operation\Operation
use BaseDispatcher;
use DispatchesJobs;
}