for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/******************************************************************************
* Copyright (c) 2016 Constantin Galbenu <[email protected]> *
******************************************************************************/
namespace Gica\Cqrs\Command;
use Gica\Cqrs\Command;
interface CommandDispatcher
{
public function dispatchCommand(Command $command, $metadata = null);
public function canExecuteCommand(Command $command): bool;
}