!C99Shell v. 2.1 [PHP 8 Update] [02.02.2022]!

Software: Apache/2.4.53 (Unix) OpenSSL/1.1.1o PHP/7.4.29 mod_perl/2.0.12 Perl/v5.34.1. PHP/7.4.29 

uname -a: Linux vps-2738122-x 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64 

uid=1(daemon) gid=1(daemon) grupos=1(daemon) 

Safe-mode: OFF (not secure)

/opt/apex_led/php/vendor/guzzlehttp/guzzle/src/Message/   drwxrwxr-x
Free 15.58 GB of 61.93 GB (25.15%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     RequestInterface.php (3.04 KB)      -rwxrwxr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace GuzzleHttp\Message;

use 
GuzzleHttp\Event\HasEmitterInterface;
use 
GuzzleHttp\Query;

/**
 * Generic HTTP request interface
 */
interface RequestInterface extends MessageInterfaceHasEmitterInterface
{
    
/**
     * Sets the request URL.
     *
     * The URL MUST be a string, or an object that implements the
     * `__toString()` method.
     *
     * @param string $url Request URL.
     *
     * @throws \InvalidArgumentException If the URL is invalid.
     */
    
public function setUrl($url);

    
/**
     * Gets the request URL as a string.
     *
     * @return string Returns the URL as a string.
     */
    
public function getUrl();

    
/**
     * Get the resource part of the the request, including the path, query
     * string, and fragment.
     *
     * @return string
     */
    
public function getResource();

    
/**
     * Get the collection of key value pairs that will be used as the query
     * string in the request.
     *
     * @return Query
     */
    
public function getQuery();

    
/**
     * Set the query string used by the request
     *
     * @param array|Query $query Query to set
     */
    
public function setQuery($query);

    
/**
     * Get the HTTP method of the request.
     *
     * @return string
     */
    
public function getMethod();

    
/**
     * Set the HTTP method of the request.
     *
     * @param string $method HTTP method
     */
    
public function setMethod($method);

    
/**
     * Get the URI scheme of the request (http, https, etc.).
     *
     * @return string
     */
    
public function getScheme();

    
/**
     * Set the URI scheme of the request (http, https, etc.).
     *
     * @param string $scheme Scheme to set
     */
    
public function setScheme($scheme);

    
/**
     * Get the port scheme of the request (e.g., 80, 443, etc.).
     *
     * @return int
     */
    
public function getPort();

    
/**
     * Set the port of the request.
     *
     * Setting a port modifies the Host header of a request as necessary.
     *
     * @param int $port Port to set
     */
    
public function setPort($port);

    
/**
     * Get the host of the request.
     *
     * @return string
     */
    
public function getHost();

    
/**
     * Set the host of the request including an optional port.
     *
     * Including a port in the host argument will explicitly change the port of
     * the request. If no port is found, the default port of the current
     * request scheme will be utilized.
     *
     * @param string $host Host to set (e.g. www.yahoo.com, www.yahoo.com:80)
     */
    
public function setHost($host);

    
/**
     * Get the path of the request (e.g. '/', '/index.html').
     *
     * @return string
     */
    
public function getPath();

    
/**
     * Set the path of the request (e.g. '/', '/index.html').
     *
     * @param string|array $path Path to set or array of segments to implode
     */
    
public function setPath($path);

    
/**
     * Get the request's configuration options.
     *
     * @return \GuzzleHttp\Collection
     */
    
public function getConfig();
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.1 [PHP 8 Update] [02.02.2022] maintained byC99Shell Github | Generation time: 0.294 ]--