Mahdee Rajon  subception

File "CommandBusContract.php"

Full Path: /var/www/html/back/app/Contracts/CommandBusContract.php
File size: 194 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

declare(strict_types=1);

namespace App\Contracts;

interface CommandBusContract
{
    public function dispatch(object $command): mixed;
    public function register(array $map): void;
}