for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace EventSauce\EventSourcing\LibraryConsumptionTests\ComplexAggregates;
use EventSauce\EventSourcing\DummyAggregateRootId;
class CauseDelegatedBehavior
{
public function __construct(private DummyAggregateRootId $id)
}
public function id(): DummyAggregateRootId
return $this->id;