for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types = 1);
namespace Aggrego\Domain\ProgressiveBoard\Events;
use Aggrego\Domain\Shared\Event\Model\Events\Event;
use Aggrego\Domain\Shared\ValueObject\Uuid;
class UpdatedLastStepsShardEvent extends Event
{
public function __construct(Uuid $uuid)
parent::__construct(['uuid' => $uuid->getValue()]);
}