for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace hiapi\middlewares;
use League\Tactician\Middleware;
/**
* Class PassthroughCommandHandler
*
* @author Dmytro Naumenko <[email protected]>
*/
class PassthroughCommandHandler implements Middleware
{
* @param object $command
* @param callable $next
* @return mixed
public function execute($command, callable $next)
return $command;
}