summaryrefslogtreecommitdiff
path: root/plugins/af_readability/vendor/psr/http-factory/src/RequestFactoryInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/af_readability/vendor/psr/http-factory/src/RequestFactoryInterface.php')
-rw-r--r--plugins/af_readability/vendor/psr/http-factory/src/RequestFactoryInterface.php18
1 files changed, 0 insertions, 18 deletions
diff --git a/plugins/af_readability/vendor/psr/http-factory/src/RequestFactoryInterface.php b/plugins/af_readability/vendor/psr/http-factory/src/RequestFactoryInterface.php
deleted file mode 100644
index cb39a08bf..000000000
--- a/plugins/af_readability/vendor/psr/http-factory/src/RequestFactoryInterface.php
+++ /dev/null
@@ -1,18 +0,0 @@
-<?php
-
-namespace Psr\Http\Message;
-
-interface RequestFactoryInterface
-{
- /**
- * Create a new request.
- *
- * @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.
- *
- * @return RequestInterface
- */
- public function createRequest(string $method, $uri): RequestInterface;
-}