<?php namespace ServiceCore\Application\Command; /** * Interface MixedCommandHandlerInterface * * @package ServiceCore\Application\Command */ interface MixedCommandHandlerInterface { /** * @param CommandInterface $command * * @return array */ public function execute(CommandInterface $command): array; }