Files
php-flasher/Middleware/MiddlewareInterface.php
T
2020-12-02 00:57:12 +01:00

17 lines
302 B
PHP

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