Files
cheeper-ddd-cqrs-example/src/Cheeper/Chapter7/Application/Author/Projection/CreateTimelineProjectionHandlerInterface.php
Carlos Buenosvinos 6559597db5 [Chapter9] WIP
2022-03-07 15:12:28 +01:00

11 lines
221 B
PHP

<?php
declare(strict_types=1);
namespace Cheeper\Chapter7\Application\Author\Projection;
interface CreateTimelineProjectionHandlerInterface
{
public function __invoke(CreateTimelineProjection $projection): void;
}