Files
Starseed/src/Shared/Application/Bus/CommandBusInterface.php

11 lines
159 B
PHP

<?php
declare(strict_types=1);
namespace App\Shared\Application\Bus;
interface CommandBusInterface
{
public function dispatch(object $command): void;
}