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;