for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spatie\EventProjector;
use Illuminate\Bus\Queueable;
use Illuminate\Queue\SerializesModels;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Spatie\EventProjector\Models\StoredEvent;
class HandleStoredEventJob implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels, HandlesStoredEvent;
/** @var \Spatie\EventProjector\Models\StoredEvent */
public $storedEvent;
/** @var array */
public $tags;
public function __construct(StoredEvent $storedEvent, array $tags)
$this->storedEvent = $storedEvent;
$this->tags = $tags;
}