Files
php-flasher/Middleware/MiddlewareInterface.php
T
KHOUBZA Younes 26d4ca787f update namespace
2020-12-03 09:15:47 +01:00

17 lines
288 B
PHP

<?php
namespace Flasher\Prime\Middleware;
use Flasher\Prime\Envelope;
interface MiddlewareInterface
{
/**
* @param Envelope $envelope
* @param callable $next
*
* @return Envelope
*/
public function handle(Envelope $envelope, callable $next);
}