summaryrefslogtreecommitdiff
path: root/src/RequestHandlerInterface.php
diff options
context:
space:
mode:
authorDaniel Weipert <code@drogueronin.de>2023-11-12 11:16:56 +0100
committerDaniel Weipert <code@drogueronin.de>2023-11-20 17:30:04 +0100
commit6df3d321d9b67c4541f50158b087d37c4b22e886 (patch)
tree06031988bb4b957b76f051af366ced448a48545f /src/RequestHandlerInterface.php
initial commit
Diffstat (limited to 'src/RequestHandlerInterface.php')
-rw-r--r--src/RequestHandlerInterface.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/RequestHandlerInterface.php b/src/RequestHandlerInterface.php
new file mode 100644
index 0000000..2d6ae90
--- /dev/null
+++ b/src/RequestHandlerInterface.php
@@ -0,0 +1,8 @@
+<?php
+
+namespace GeminiFoundation;
+
+interface RequestHandlerInterface
+{
+ public function __invoke(Response $response, Request $request): Response;
+}