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