diff options
author | 2022-11-07 18:22:54 +0100 | |
---|---|---|
committer | 2022-11-07 18:22:54 +0100 | |
commit | 2ef98b299fa90bdcc120baedc3836ca0e47e2b60 (patch) | |
tree | 4189a165203812c17c501eaef7e8fcb86d7f7ea5 /lib/ActionInterface.php | |
parent | fe59cbabc950046ead7a8342e76e7a42ab1de28a (diff) | |
download | rss-bridge-2ef98b299fa90bdcc120baedc3836ca0e47e2b60.tar.gz rss-bridge-2ef98b299fa90bdcc120baedc3836ca0e47e2b60.tar.zst rss-bridge-2ef98b299fa90bdcc120baedc3836ca0e47e2b60.zip |
refactor: extract frontpage to template (#3130)
Also introduce usage of Response object
Diffstat (limited to 'lib/ActionInterface.php')
-rw-r--r-- | lib/ActionInterface.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ActionInterface.php b/lib/ActionInterface.php index ea5020a3..4eb9cc65 100644 --- a/lib/ActionInterface.php +++ b/lib/ActionInterface.php @@ -22,7 +22,7 @@ interface ActionInterface * * Note: This function directly outputs data to the user. * - * @return void + * @return ?string */ public function execute(array $request); } |