for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace EventSauce\EventSourcing\TestUtilities\TestingAggregates;
use EventSauce\EventSourcing\AggregateRootId;
class PerformDummyTask
{
/**
* @var AggregateRootId
*/
private $aggregateRootId;
public function __construct(AggregateRootId $aggregateRootId)
$this->aggregateRootId = $aggregateRootId;
}
public function aggregateRootId(): AggregateRootId
return $this->aggregateRootId;