mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-23 15:47:35 +00:00
7 lines
95 B
PHP
7 lines
95 B
PHP
<?php
|
|
|
|
interface ActionInterface
|
|
{
|
|
public function __invoke(Request $request): Response;
|
|
}
|