This commit is contained in:
Dag 2023-09-25 21:18:48 +02:00 committed by GitHub
parent e1b911fc1f
commit cd30c25b08
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 282 additions and 884 deletions

View file

@ -1,28 +1,9 @@
<?php
/**
* This file is part of RSS-Bridge, a PHP project capable of generating RSS and
* Atom feeds for websites that don't have one.
*
* For the full license information, please view the UNLICENSE file distributed
* with this source code.
*
* @package Core
* @license http://unlicense.org/ UNLICENSE
* @link https://github.com/rss-bridge/rss-bridge
*/
/**
* Interface for action objects.
*/
interface ActionInterface
{
/**
* Execute the action.
*
* Note: This function directly outputs data to the user.
*
* @return ?string
* @return string|Response
*/
public function execute(array $request);
}