diff options
author | 2024-01-25 16:06:24 +0100 | |
---|---|---|
committer | 2024-01-25 16:06:24 +0100 | |
commit | d08d13f2c87b24fadb92e31c50dedc6e56c3c088 (patch) | |
tree | a2fd66aa0cdd091ad34a135cf8222847f025f6f3 /lib/ActionInterface.php | |
parent | 9574c17ddc4c55ab191878164627c4501a565221 (diff) | |
download | rss-bridge-d08d13f2c87b24fadb92e31c50dedc6e56c3c088.tar.gz rss-bridge-d08d13f2c87b24fadb92e31c50dedc6e56c3c088.tar.zst rss-bridge-d08d13f2c87b24fadb92e31c50dedc6e56c3c088.zip |
refactor: introduce http Request object (#3926)
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 220dfa50..c0ddcf9f 100644 --- a/lib/ActionInterface.php +++ b/lib/ActionInterface.php @@ -5,5 +5,5 @@ interface ActionInterface /** * @return string|Response */ - public function execute(array $request); + public function execute(Request $request); } |