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

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

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

```php
<?php

namespace Depicter\Psr\Http\Message;

interface ResponseFactoryInterface
{
    /**
     * Create a new response.
     *
     * @param int $code HTTP status code; defaults to 200
     * @param string $reasonPhrase Reason phrase to associate with status code
     *     in generated response; if none is provided implementations MAY use
     *     the defaults as suggested in the HTTP specification.
     *
     * @return ResponseInterface
     */
    public function createResponse(int $code = 200, string $reasonPhrase = ''): ResponseInterface;
}

```
