rss-bridge/lib/ActionInterface.php

7 lines
95 B
PHP
Raw Normal View History

2019-02-06 18:34:51 +01:00
<?php
interface ActionInterface
{
2024-08-07 00:21:06 +02:00
public function __invoke(Request $request): Response;
2019-02-06 18:34:51 +01:00
}