aboutsummaryrefslogtreecommitdiff
path: root/lib/ActionInterface.php
diff options
context:
space:
mode:
authorGravatar Dag <me@dvikan.no> 2024-08-07 00:21:06 +0200
committerGravatar GitHub <noreply@github.com> 2024-08-07 00:21:06 +0200
commit6ec91935462b2c24daf89b68283e1c413887f2bd (patch)
tree091765dca18d1766ed3408cade7685efd5b9c1cb /lib/ActionInterface.php
parent401cc187b71661cad81a27381763059c047c69e4 (diff)
downloadrss-bridge-6ec91935462b2c24daf89b68283e1c413887f2bd.tar.gz
rss-bridge-6ec91935462b2c24daf89b68283e1c413887f2bd.tar.zst
rss-bridge-6ec91935462b2c24daf89b68283e1c413887f2bd.zip
yuop (#4193)
Diffstat (limited to 'lib/ActionInterface.php')
-rw-r--r--lib/ActionInterface.php5
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/ActionInterface.php b/lib/ActionInterface.php
index c0ddcf9f..d2e1c709 100644
--- a/lib/ActionInterface.php
+++ b/lib/ActionInterface.php
@@ -2,8 +2,5 @@
interface ActionInterface
{
- /**
- * @return string|Response
- */
- public function execute(Request $request);
+ public function __invoke(Request $request): Response;
}