9 lines
129 B
PHP
9 lines
129 B
PHP
<?php
|
|
|
|
namespace DistributingCarriers\Infrastructure\Routing;
|
|
|
|
interface IRequestHandler
|
|
{
|
|
public function handle(): void;
|
|
}
|