aboutsummaryrefslogtreecommitdiff
path: root/lib/ActionInterface.php
diff options
context:
space:
mode:
authorGravatar Dag <me@dvikan.no> 2022-07-08 21:06:14 +0200
committerGravatar GitHub <noreply@github.com> 2022-07-08 21:06:14 +0200
commita966213cd7e5dc2fdac90a4d54dd4dd6ebe46ea9 (patch)
tree00a257c21d7e317a7c7df4a849413a841e29b498 /lib/ActionInterface.php
parent22c10941dc5086f6519f9f526348d68700c57e84 (diff)
downloadrss-bridge-a966213cd7e5dc2fdac90a4d54dd4dd6ebe46ea9.tar.gz
rss-bridge-a966213cd7e5dc2fdac90a4d54dd4dd6ebe46ea9.tar.zst
rss-bridge-a966213cd7e5dc2fdac90a4d54dd4dd6ebe46ea9.zip
refactor: inject the action params via its execute method (#2907)
Diffstat (limited to 'lib/ActionInterface.php')
-rw-r--r--lib/ActionInterface.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ActionInterface.php b/lib/ActionInterface.php
index 78284ab4..ea5020a3 100644
--- a/lib/ActionInterface.php
+++ b/lib/ActionInterface.php
@@ -24,5 +24,5 @@ interface ActionInterface
*
* @return void
*/
- public function execute();
+ public function execute(array $request);
}