1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- declare(strict_types=1);
- /**
- * This file is part of Hyperf.
- *
- * @link https://www.hyperf.io
- * @document https://hyperf.wiki
- * @contact group@hyperf.io
- * @license https://github.com/hyperf/hyperf/blob/master/LICENSE
- */
- namespace Hyperf\Context;
- use Psr\Http\Message\ServerRequestInterface;
- use RuntimeException;
- use Swow\Psr7\Message\ServerRequestPlusInterface;
- class RequestContext
- {
- public static function get(?int $coroutineId = null): ServerRequestPlusInterface
- {
- return Context::get(ServerRequestInterface::class, null, $coroutineId);
- }
- public static function set(ServerRequestInterface $request, ?int $coroutineId = null): ServerRequestPlusInterface
- {
- if (! $request instanceof ServerRequestPlusInterface) {
- throw new RuntimeException('The request must instanceof ServerRequestPlusInterface');
- }
- return Context::set(ServerRequestInterface::class, $request, $coroutineId);
- }
- public static function has(?int $coroutineId = null): bool
- {
- return Context::has(ServerRequestInterface::class, $coroutineId);
- }
- public static function getOrNull(?int $coroutineId = null): ?ServerRequestPlusInterface
- {
- return Context::get(ServerRequestInterface::class, null, $coroutineId);
- }
- }
|