Operations
Sometimes, certain jobs almost always need to run together. If, for example, you need to run an external api call before creating a resource, then that would force you to run 2 Jobs every single time that you had to create that resource.
Operations are used in order to DRY (Don't Repeat Yourself) up your code.
Essentially, Operations are a group of Jobs. Instead of calling the same Jobs over and over again, you can group them together and then run that Operation instead.
Generating an Operation
./vendor/bin/vivid make:operation <operation>
Anatomy of the Operation
The Operation look like a Feature. It has a handle
method and it has the right to call Jobs.
<?php
namespace App\Operations;
use Vivid\Foundation\Operation;
class ExampleOperation extends Operation
{
public function handle()
{
}
}