# depicter/trunk/modules/Psr/Http/Message/UriFactoryInterface.php

Depicter — Popup &amp; Slider Builder, version trunk. 18 lines.

- Page: https://pluginprobe.com/plugins/depicter/trunk/code/modules/Psr/Http/Message/UriFactoryInterface.php
- Raw: https://pluginprobe.com/plugins/depicter/trunk/raw/modules/Psr/Http/Message/UriFactoryInterface.php
- Modified: 2024-03-02T11:03:48+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/depicter/trunk/code/modules/Psr/Http/Message/UriFactoryInterface.php#L10-L20`.

```php
<?php

namespace Depicter\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;
}

```
