| Current Path : /home/helpink/www/libraries/vendor/laminas/laminas-diactoros/src/ |
| 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);
}
}