• File: QueryBusContract.php
  • Full Path: /var/www/html/back/app/Contracts/QueryBusContract.php
  • File size: 185 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

declare(strict_types=1);

namespace App\Contracts;

interface QueryBusContract
{
    public function ask(object $query): mixed;
    public function register(array $map): void;
}