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