rss-bridge/lib/ActionInterface.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
95 B
PHP
Raw Normal View History

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