From c51f2fa401ea325b82072a498efe3ab79e1e96d3 Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Sat, 20 Mar 2021 11:55:47 +0200 Subject: [PATCH] comment --- application/Espo/Core/EntryPoint/EntryPoint.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/application/Espo/Core/EntryPoint/EntryPoint.php b/application/Espo/Core/EntryPoint/EntryPoint.php index a1d1c60ed2..d13d027ee9 100644 --- a/application/Espo/Core/EntryPoint/EntryPoint.php +++ b/application/Espo/Core/EntryPoint/EntryPoint.php @@ -34,6 +34,10 @@ use Espo\Core\{ Api\Response, }; +/** + * An entry point to the application by `?entryPoint={entityPointName}` URI. + * Only GET requests are handled. + */ interface EntryPoint { public function run(Request $request, Response $response) : void;