summaryrefslogtreecommitdiff
path: root/plugins/af_readability/vendor/psr/http-factory/src/ServerRequestFactoryInterface.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2022-12-13 20:08:43 +0300
committerAndrew Dolgov <[email protected]>2022-12-13 20:08:43 +0300
commit8ea537123d1cef38f25f9fbe92e3a9c0f89de55a (patch)
tree0b40ea733af15c1f33403e42afc8afa14d48b87c /plugins/af_readability/vendor/psr/http-factory/src/ServerRequestFactoryInterface.php
parent313f12ae9306fc62bbbfa10310a2feb20aa274c5 (diff)
move af_readability out of master tree
Diffstat (limited to 'plugins/af_readability/vendor/psr/http-factory/src/ServerRequestFactoryInterface.php')
-rw-r--r--plugins/af_readability/vendor/psr/http-factory/src/ServerRequestFactoryInterface.php24
1 files changed, 0 insertions, 24 deletions
diff --git a/plugins/af_readability/vendor/psr/http-factory/src/ServerRequestFactoryInterface.php b/plugins/af_readability/vendor/psr/http-factory/src/ServerRequestFactoryInterface.php
deleted file mode 100644
index 9fe031a8f..000000000
--- a/plugins/af_readability/vendor/psr/http-factory/src/ServerRequestFactoryInterface.php
+++ /dev/null
@@ -1,24 +0,0 @@
-<?php
-
-namespace Psr\Http\Message;
-
-interface ServerRequestFactoryInterface
-{
- /**
- * Create a new server request.
- *
- * Note that server-params are taken precisely as given - no parsing/processing
- * of the given values is performed, and, in particular, no attempt is made to
- * determine the HTTP method or URI, which must be provided explicitly.
- *
- * @param string $method The HTTP method associated with the request.
- * @param UriInterface|string $uri The URI associated with the request. If
- * the value is a string, the factory MUST create a UriInterface
- * instance based on it.
- * @param array $serverParams Array of SAPI parameters with which to seed
- * the generated request instance.
- *
- * @return ServerRequestInterface
- */
- public function createServerRequest(string $method, $uri, array $serverParams = []): ServerRequestInterface;
-}