mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-12-19 01:20:58 +03:00
9 lines
123 B
PHP
9 lines
123 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
interface Middleware
|
||
|
{
|
||
|
public function __invoke(Request $request, $next): Response;
|
||
|
}
|