rss-bridge/lib/ActionInterface.php

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

10 lines
131 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
{
/**
2023-09-25 22:18:48 +03:00
* @return string|Response
2019-02-06 20:34:51 +03:00
*/
public function execute(Request $request);
2019-02-06 20:34:51 +03:00
}