X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FCapabilities%2FICanHandleRequests.php;h=154eae69e5b65ae534fa3057bdf09b4839a8efcf;hb=7df5b41f2eaf4cb00d2acad8eeb0ccc9206bdeb5;hp=dc608ebbb712b0cb099f9f6e70d41c7d2e008a66;hpb=7cd85873ee321263ff9b4e77fc121dca1c9dae6f;p=friendica.git diff --git a/src/Capabilities/ICanHandleRequests.php b/src/Capabilities/ICanHandleRequests.php index dc608ebbb7..154eae69e5 100644 --- a/src/Capabilities/ICanHandleRequests.php +++ b/src/Capabilities/ICanHandleRequests.php @@ -1,4 +1,23 @@ . + * + */ namespace Friendica\Capabilities; @@ -11,12 +30,11 @@ use Psr\Http\Message\ResponseInterface; interface ICanHandleRequests { /** - * @param array $post The $_POST content (in case of POST) - * @param array $request The $_REQUEST content (in case of GET, POST) + * @param array $request The $_REQUEST content (including content from the PHP input stream) * * @return ResponseInterface responding to the request handling * * @throws HTTPException\InternalServerErrorException */ - public function run(array $post = [], array $request = []): ResponseInterface; + public function run(array $request = []): ResponseInterface; }