rss-bridge/lib/ActionInterface.php

7 lines
95 B
PHP
Raw Normal View History

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