1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-01-17 22:28:22 +01:00
php-rss-bridge/lib/ActionInterface.php
2024-08-07 00:21:06 +02:00

7 lines
95 B
PHP

<?php
interface ActionInterface
{
public function __invoke(Request $request): Response;
}