The Sapien Request is a value object, composed of other value objects, representing the PHP request received by the server. Use a Request instead of the various PHP superglobals.
Instantiation of Request is straightforward:
use Sapien\Request;
$request = new Request();
The Request provides public readonly properties related to these areas:
You can also extend the Request for your own purposes.