diff options
author | 2022-07-01 15:10:30 +0200 | |
---|---|---|
committer | 2022-07-01 15:10:30 +0200 | |
commit | 4f75591060d95208a301bc6bf460d875631b29cc (patch) | |
tree | 4e37d86840e8d990a563ba75d3de6f84a53cc2de /lib/ActionInterface.php | |
parent | 66568e3a39c61546c09a47a5688914a0bdf3c60c (diff) | |
download | rss-bridge-4f75591060d95208a301bc6bf460d875631b29cc.tar.gz rss-bridge-4f75591060d95208a301bc6bf460d875631b29cc.tar.zst rss-bridge-4f75591060d95208a301bc6bf460d875631b29cc.zip |
Reformat codebase v4 (#2872)
Reformat code base to PSR12
Co-authored-by: rssbridge <noreply@github.com>
Diffstat (limited to 'lib/ActionInterface.php')
-rw-r--r-- | lib/ActionInterface.php | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/lib/ActionInterface.php b/lib/ActionInterface.php index c8684d52..78284ab4 100644 --- a/lib/ActionInterface.php +++ b/lib/ActionInterface.php @@ -1,4 +1,5 @@ <?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. @@ -6,21 +7,22 @@ * 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 + * @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 void - */ - public function execute(); +interface ActionInterface +{ + /** + * Execute the action. + * + * Note: This function directly outputs data to the user. + * + * @return void + */ + public function execute(); } |