16 lines
269 B
PHP
Raw Normal View History

2021-07-27 14:46:32 +02:00
<?php
2022-05-03 15:24:29 +02:00
declare(strict_types=1);
2021-07-27 14:46:32 +02:00
namespace Laminas\Stdlib;
interface DispatchableInterface
{
/**
* Dispatch a request
*
* @return Response|mixed
*/
2022-05-03 15:24:29 +02:00
public function dispatch(RequestInterface $request, ?ResponseInterface $response = null);
2021-07-27 14:46:32 +02:00
}