mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-01-04 16:26:24 +00:00
6 lines
95 B
PHP
6 lines
95 B
PHP
<?php
|
|
|
|
interface ActionInterface
|
|
{
|
|
public function __invoke(Request $request): Response;
|
|
}
|