You've already forked php-flasher
mirror of
https://github.com/php-flasher/php-flasher.git
synced 2026-04-06 04:52:56 +01:00
17 lines
302 B
PHP
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);
|
|
}
|