summaryrefslogtreecommitdiff
path: root/vendor/psr/http-factory/src/UriFactoryInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/psr/http-factory/src/UriFactoryInterface.php')
-rw-r--r--vendor/psr/http-factory/src/UriFactoryInterface.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/vendor/psr/http-factory/src/UriFactoryInterface.php b/vendor/psr/http-factory/src/UriFactoryInterface.php
new file mode 100644
index 000000000..06df0b46a
--- /dev/null
+++ b/vendor/psr/http-factory/src/UriFactoryInterface.php
@@ -0,0 +1,17 @@
+<?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;
+}