xprt64/cqrs-es

View on GitHub
src/Dudulina/Command/CommandValidator.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 * Copyright (c) 2018 Constantin Galbenu <xprt64@gmail.com>
 */

declare(strict_types=1);

namespace Dudulina\Command;

use Dudulina\Command;

interface CommandValidator
{

    public function validateCommand(Command $command);
}