Reference implementations of the RequestInterop interfaces.

1.x-dev 2025-06-09 23:32 UTC

This package is auto-updated.

Last update: 2025-06-09 23:32:23 UTC


README

The reference implementation is readonly; it cannot be modified after construction, and provides idempotent readonly access to the request body.

use RequestInterop\Impl\Request;
use RequestInterop\Impl\RequestFactory;

$factory = new RequestFactory();
$request = $factory->newRequest();
assert($request instanceof Request::class);