rss-bridge/lib/ActionInterface.php

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

10 lines
129 B
PHP
Raw Normal View History

2019-02-06 18:34:51 +01:00
<?php
2019-02-06 18:34:51 +01:00
interface ActionInterface
{
/**
2023-09-25 21:18:48 +02:00
* @return string|Response
2019-02-06 18:34:51 +01:00
*/
public function execute(array $request);
2019-02-06 18:34:51 +01:00
}