for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spatie\EventProjector\Events;
use Illuminate\Support\Collection;
final class StartingEventReplay
{
/** @var \Illuminate\Support\Collection */
public $projectors;
public function __construct(Collection $projectors)
$this->projectors = $projectors;
}