whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
sentry
/
sentry
/
src
/
Integration
/
Upload File:
files >> //home/kckglobal/www/portal/vendor/sentry/sentry/src/Integration/RequestFetcher.php
<?php declare(strict_types=1); namespace Sentry\Integration; use GuzzleHttp\Psr7\ServerRequest; use Psr\Http\Message\ServerRequestInterface; /** * Default implementation for RequestFetcherInterface. Creates a request object * from the PHP superglobals. */ final class RequestFetcher implements RequestFetcherInterface { /** * {@inheritdoc} */ public function fetchRequest(): ?ServerRequestInterface { if (!isset($_SERVER['REQUEST_METHOD']) || \PHP_SAPI === 'cli') { return null; } return ServerRequest::fromGlobals(); } }
Copyright ©2021 || Defacer Indonesia