summaryrefslogtreecommitdiff
path: root/plugins/af_readability/vendor/psr/http-factory/src/UriFactoryInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/af_readability/vendor/psr/http-factory/src/UriFactoryInterface.php')
-rw-r--r--plugins/af_readability/vendor/psr/http-factory/src/UriFactoryInterface.php17
1 files changed, 0 insertions, 17 deletions
diff --git a/plugins/af_readability/vendor/psr/http-factory/src/UriFactoryInterface.php b/plugins/af_readability/vendor/psr/http-factory/src/UriFactoryInterface.php
deleted file mode 100644
index 06df0b46a..000000000
--- a/plugins/af_readability/vendor/psr/http-factory/src/UriFactoryInterface.php
+++ /dev/null
@@ -1,17 +0,0 @@
-<?php
-
-namespace Psr\Http\Message;
-
-interface UriFactoryInterface
-{
- /**
- * Create a new URI.
- *
- * @param string $uri
- *
- * @return UriInterface
- *
- * @throws \InvalidArgumentException If the given URI cannot be parsed.
- */
- public function createUri(string $uri = ''): UriInterface;
-}