Your IP : 216.73.216.84


Current Path : /home/helpink/www/libraries/vendor/laminas/laminas-diactoros/src/
Upload File :
Current File : /home/helpink/www/libraries/vendor/laminas/laminas-diactoros/src/RequestFactory.php

<?php

declare(strict_types=1);

namespace Laminas\Diactoros;

use Psr\Http\Message\RequestFactoryInterface;
use Psr\Http\Message\RequestInterface;

class RequestFactory implements RequestFactoryInterface
{
    /**
     * {@inheritDoc}
     */
    public function createRequest(string $method, $uri): RequestInterface
    {
        return new Request($uri, $method);
    }
}