mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-21 14:57:52 +00:00
39952c2d95
* refactor: implement middleware chain * refactor
9 lines
123 B
PHP
9 lines
123 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
interface Middleware
|
|
{
|
|
public function __invoke(Request $request, $next): Response;
|
|
}
|