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

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

- Page: https://pluginprobe.com/plugins/depicter/trunk/code/modules/Psr/Http/Message/RequestFactoryInterface.php
- Raw: https://pluginprobe.com/plugins/depicter/trunk/raw/modules/Psr/Http/Message/RequestFactoryInterface.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/RequestFactoryInterface.php#L10-L20`.

```php
<?php

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

```
