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

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

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

```php
<?php

namespace Depicter\Psr\Http\Message;

interface ServerRequestFactoryInterface
{
    /**
     * Create a new server request.
     *
     * Note that server-params are taken precisely as given - no parsing/processing
     * of the given values is performed, and, in particular, no attempt is made to
     * determine the HTTP method or URI, which must be provided explicitly.
     *
     * @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.
     * @param array $serverParams Array of SAPI parameters with which to seed
     *     the generated request instance.
     *
     * @return ServerRequestInterface
     */
    public function createServerRequest(string $method, $uri, array $serverParams = []): ServerRequestInterface;
}

```
