Reference implementations of the RequestInterop interfaces.

1.0.0-alpha1 2025-07-15 13:15 UTC

This package is auto-updated.

Last update: 2025-07-15 13:16:08 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);