no-framework-tutorial/implementation/14-middleware/src/Factory/RequestFactory.php
2022-05-31 18:50:35 +02:00

11 lines
295 B
PHP

<?php declare(strict_types=1);
namespace Lubian\NoFramework\Factory;
use Psr\Http\Message\ServerRequestFactoryInterface;
use Psr\Http\Message\ServerRequestInterface;
interface RequestFactory extends ServerRequestFactoryInterface
{
public function fromGlobals(): ServerRequestInterface;
}