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