summaryrefslogtreecommitdiffstats
path: root/REFLECTION
diff options
context:
space:
mode:
Diffstat (limited to 'REFLECTION')
-rw-r--r--REFLECTION952
1 files changed, 952 insertions, 0 deletions
diff --git a/REFLECTION b/REFLECTION
new file mode 100644
index 0000000..9333a3d
--- /dev/null
+++ b/REFLECTION
@@ -0,0 +1,952 @@
+Extension [ <persistent> extension #191 http_message version 0.1.0 ] {
+
+ - Dependencies {
+ Dependency [ psr (Required) ]
+ }
+
+ - Classes [7] {
+ Class [ <internal:http_message> abstract class HttpMessage\Message implements Psr\Http\Message\MessageInterface ] {
+
+ - Constants [0] {
+ }
+
+ - Static properties [0] {
+ }
+
+ - Static methods [0] {
+ }
+
+ - Properties [3] {
+ Property [ <default> protected $protocolVersion ]
+ Property [ <default> protected $headers ]
+ Property [ <default> protected $body ]
+ }
+
+ - Methods [12] {
+ Method [ <internal:http_message, ctor> public method __construct ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\MessageInterface> public method getProtocolVersion ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\MessageInterface> public method withProtocolVersion ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $version ]
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\MessageInterface> public method getHeaders ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\MessageInterface> public method hasHeader ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $name ]
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\MessageInterface> public method getHeader ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $name ]
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\MessageInterface> public method getHeaderLine ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $name ]
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\MessageInterface> public method withHeader ] {
+
+ - Parameters [2] {
+ Parameter #0 [ <required> $name ]
+ Parameter #1 [ <required> $value ]
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\MessageInterface> public method withAddedHeader ] {
+
+ - Parameters [2] {
+ Parameter #0 [ <required> $name ]
+ Parameter #1 [ <required> $value ]
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\MessageInterface> public method withoutHeader ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $name ]
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\MessageInterface> public method getBody ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\MessageInterface> public method withBody ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> Psr\Http\Message\StreamInterface $body ]
+ }
+ }
+ }
+ }
+
+ Class [ <internal:http_message> class HttpMessage\Request extends HttpMessage\Message implements Psr\Http\Message\MessageInterface, Psr\Http\Message\RequestInterface ] {
+
+ - Constants [0] {
+ }
+
+ - Static properties [0] {
+ }
+
+ - Static methods [0] {
+ }
+
+ - Properties [6] {
+ Property [ <default> protected $protocolVersion ]
+ Property [ <default> protected $headers ]
+ Property [ <default> protected $body ]
+ Property [ <default> protected $requestTarget ]
+ Property [ <default> protected $method ]
+ Property [ <default> protected $uri ]
+ }
+
+ - Methods [18] {
+ Method [ <internal:http_message, overwrites HttpMessage\Message, ctor> public method __construct ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\RequestInterface> public method getRequestTarget ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\RequestInterface> public method withRequestTarget ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $requestTarget ]
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\RequestInterface> public method getMethod ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\RequestInterface> public method withMethod ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $method ]
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\RequestInterface> public method getUri ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\RequestInterface> public method withUri ] {
+
+ - Parameters [2] {
+ Parameter #0 [ <required> Psr\Http\Message\UriInterface $logger ]
+ Parameter #1 [ <optional> $preserveHost ]
+ }
+ }
+
+ Method [ <internal:http_message, inherits HttpMessage\Message, prototype Psr\Http\Message\MessageInterface> public method getProtocolVersion ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, inherits HttpMessage\Message, prototype Psr\Http\Message\MessageInterface> public method withProtocolVersion ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $version ]
+ }
+ }
+
+ Method [ <internal:http_message, inherits HttpMessage\Message, prototype Psr\Http\Message\MessageInterface> public method getHeaders ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, inherits HttpMessage\Message, prototype Psr\Http\Message\MessageInterface> public method hasHeader ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $name ]
+ }
+ }
+
+ Method [ <internal:http_message, inherits HttpMessage\Message, prototype Psr\Http\Message\MessageInterface> public method getHeader ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $name ]
+ }
+ }
+
+ Method [ <internal:http_message, inherits HttpMessage\Message, prototype Psr\Http\Message\MessageInterface> public method getHeaderLine ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $name ]
+ }
+ }
+
+ Method [ <internal:http_message, inherits HttpMessage\Message, prototype Psr\Http\Message\MessageInterface> public method withHeader ] {
+
+ - Parameters [2] {
+ Parameter #0 [ <required> $name ]
+ Parameter #1 [ <required> $value ]
+ }
+ }
+
+ Method [ <internal:http_message, inherits HttpMessage\Message, prototype Psr\Http\Message\MessageInterface> public method withAddedHeader ] {
+
+ - Parameters [2] {
+ Parameter #0 [ <required> $name ]
+ Parameter #1 [ <required> $value ]
+ }
+ }
+
+ Method [ <internal:http_message, inherits HttpMessage\Message, prototype Psr\Http\Message\MessageInterface> public method withoutHeader ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $name ]
+ }
+ }
+
+ Method [ <internal:http_message, inherits HttpMessage\Message, prototype Psr\Http\Message\MessageInterface> public method getBody ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, inherits HttpMessage\Message, prototype Psr\Http\Message\MessageInterface> public method withBody ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> Psr\Http\Message\StreamInterface $body ]
+ }
+ }
+ }
+ }
+
+ Class [ <internal:http_message> class HttpMessage\ServerRequest extends HttpMessage\Request implements Psr\Http\Message\RequestInterface, Psr\Http\Message\MessageInterface, Psr\Http\Message\ServerRequestInterface ] {
+
+ - Constants [0] {
+ }
+
+ - Static properties [0] {
+ }
+
+ - Static methods [0] {
+ }
+
+ - Properties [12] {
+ Property [ <default> protected $protocolVersion ]
+ Property [ <default> protected $headers ]
+ Property [ <default> protected $body ]
+ Property [ <default> protected $requestTarget ]
+ Property [ <default> protected $method ]
+ Property [ <default> protected $uri ]
+ Property [ <default> protected $serverParams ]
+ Property [ <default> protected $cookieParams ]
+ Property [ <default> protected $queryParams ]
+ Property [ <default> protected $uploadedFiles ]
+ Property [ <default> protected $parsedBody ]
+ Property [ <default> protected $attributes ]
+ }
+
+ - Methods [31] {
+ Method [ <internal:http_message, overwrites HttpMessage\Request, ctor> public method __construct ] {
+
+ - Parameters [5] {
+ Parameter #0 [ <optional> array $serverParams ]
+ Parameter #1 [ <optional> array $cookieParams ]
+ Parameter #2 [ <optional> array $queryParams ]
+ Parameter #3 [ <optional> array $postParams ]
+ Parameter #4 [ <optional> array $files ]
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\ServerRequestInterface> public method getServerParams ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\ServerRequestInterface> public method getCookieParams ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\ServerRequestInterface> public method withCookieParams ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> array $cookies ]
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\ServerRequestInterface> public method getQueryParams ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\ServerRequestInterface> public method withQueryParams ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> array $query ]
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\ServerRequestInterface> public method getUploadedFiles ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\ServerRequestInterface> public method withUploadedFiles ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> array $uploadedFiles ]
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\ServerRequestInterface> public method getParsedBody ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\ServerRequestInterface> public method withParsedBody ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $parsedBody ]
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\ServerRequestInterface> public method getAttributes ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\ServerRequestInterface> public method getAttribute ] {
+
+ - Parameters [2] {
+ Parameter #0 [ <required> $name ]
+ Parameter #1 [ <optional> $default ]
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\ServerRequestInterface> public method withAttribute ] {
+
+ - Parameters [2] {
+ Parameter #0 [ <required> $name ]
+ Parameter #1 [ <required> $value ]
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\ServerRequestInterface> public method withoutAttribute ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $name ]
+ }
+ }
+
+ Method [ <internal:http_message, inherits HttpMessage\Request, prototype Psr\Http\Message\RequestInterface> public method getRequestTarget ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, inherits HttpMessage\Request, prototype Psr\Http\Message\RequestInterface> public method withRequestTarget ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $requestTarget ]
+ }
+ }
+
+ Method [ <internal:http_message, inherits HttpMessage\Request, prototype Psr\Http\Message\RequestInterface> public method getMethod ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, inherits HttpMessage\Request, prototype Psr\Http\Message\RequestInterface> public method withMethod ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $method ]
+ }
+ }
+
+ Method [ <internal:http_message, inherits HttpMessage\Request, prototype Psr\Http\Message\RequestInterface> public method getUri ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, inherits HttpMessage\Request, prototype Psr\Http\Message\RequestInterface> public method withUri ] {
+
+ - Parameters [2] {
+ Parameter #0 [ <required> Psr\Http\Message\UriInterface $logger ]
+ Parameter #1 [ <optional> $preserveHost ]
+ }
+ }
+
+ Method [ <internal:http_message, inherits HttpMessage\Message, prototype Psr\Http\Message\MessageInterface> public method getProtocolVersion ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, inherits HttpMessage\Message, prototype Psr\Http\Message\MessageInterface> public method withProtocolVersion ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $version ]
+ }
+ }
+
+ Method [ <internal:http_message, inherits HttpMessage\Message, prototype Psr\Http\Message\MessageInterface> public method getHeaders ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, inherits HttpMessage\Message, prototype Psr\Http\Message\MessageInterface> public method hasHeader ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $name ]
+ }
+ }
+
+ Method [ <internal:http_message, inherits HttpMessage\Message, prototype Psr\Http\Message\MessageInterface> public method getHeader ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $name ]
+ }
+ }
+
+ Method [ <internal:http_message, inherits HttpMessage\Message, prototype Psr\Http\Message\MessageInterface> public method getHeaderLine ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $name ]
+ }
+ }
+
+ Method [ <internal:http_message, inherits HttpMessage\Message, prototype Psr\Http\Message\MessageInterface> public method withHeader ] {
+
+ - Parameters [2] {
+ Parameter #0 [ <required> $name ]
+ Parameter #1 [ <required> $value ]
+ }
+ }
+
+ Method [ <internal:http_message, inherits HttpMessage\Message, prototype Psr\Http\Message\MessageInterface> public method withAddedHeader ] {
+
+ - Parameters [2] {
+ Parameter #0 [ <required> $name ]
+ Parameter #1 [ <required> $value ]
+ }
+ }
+
+ Method [ <internal:http_message, inherits HttpMessage\Message, prototype Psr\Http\Message\MessageInterface> public method withoutHeader ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $name ]
+ }
+ }
+
+ Method [ <internal:http_message, inherits HttpMessage\Message, prototype Psr\Http\Message\MessageInterface> public method getBody ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, inherits HttpMessage\Message, prototype Psr\Http\Message\MessageInterface> public method withBody ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> Psr\Http\Message\StreamInterface $body ]
+ }
+ }
+ }
+ }
+
+ Class [ <internal:http_message> class HttpMessage\Response extends HttpMessage\Message implements Psr\Http\Message\MessageInterface, Psr\Http\Message\ResponseInterface ] {
+
+ - Constants [0] {
+ }
+
+ - Static properties [0] {
+ }
+
+ - Static methods [0] {
+ }
+
+ - Properties [5] {
+ Property [ <default> protected $protocolVersion ]
+ Property [ <default> protected $headers ]
+ Property [ <default> protected $body ]
+ Property [ <default> protected $statusCode ]
+ Property [ <default> protected $reasonPhrase ]
+ }
+
+ - Methods [15] {
+ Method [ <internal:http_message, prototype Psr\Http\Message\ResponseInterface> public method getStatusCode ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\ResponseInterface> public method getReasonPhrase ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\ResponseInterface> public method withStatus ] {
+
+ - Parameters [2] {
+ Parameter #0 [ <required> $code ]
+ Parameter #1 [ <optional> $reasonPhrase ]
+ }
+ }
+
+ Method [ <internal:http_message, inherits HttpMessage\Message, ctor> public method __construct ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, inherits HttpMessage\Message, prototype Psr\Http\Message\MessageInterface> public method getProtocolVersion ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, inherits HttpMessage\Message, prototype Psr\Http\Message\MessageInterface> public method withProtocolVersion ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $version ]
+ }
+ }
+
+ Method [ <internal:http_message, inherits HttpMessage\Message, prototype Psr\Http\Message\MessageInterface> public method getHeaders ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, inherits HttpMessage\Message, prototype Psr\Http\Message\MessageInterface> public method hasHeader ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $name ]
+ }
+ }
+
+ Method [ <internal:http_message, inherits HttpMessage\Message, prototype Psr\Http\Message\MessageInterface> public method getHeader ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $name ]
+ }
+ }
+
+ Method [ <internal:http_message, inherits HttpMessage\Message, prototype Psr\Http\Message\MessageInterface> public method getHeaderLine ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $name ]
+ }
+ }
+
+ Method [ <internal:http_message, inherits HttpMessage\Message, prototype Psr\Http\Message\MessageInterface> public method withHeader ] {
+
+ - Parameters [2] {
+ Parameter #0 [ <required> $name ]
+ Parameter #1 [ <required> $value ]
+ }
+ }
+
+ Method [ <internal:http_message, inherits HttpMessage\Message, prototype Psr\Http\Message\MessageInterface> public method withAddedHeader ] {
+
+ - Parameters [2] {
+ Parameter #0 [ <required> $name ]
+ Parameter #1 [ <required> $value ]
+ }
+ }
+
+ Method [ <internal:http_message, inherits HttpMessage\Message, prototype Psr\Http\Message\MessageInterface> public method withoutHeader ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $name ]
+ }
+ }
+
+ Method [ <internal:http_message, inherits HttpMessage\Message, prototype Psr\Http\Message\MessageInterface> public method getBody ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, inherits HttpMessage\Message, prototype Psr\Http\Message\MessageInterface> public method withBody ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> Psr\Http\Message\StreamInterface $body ]
+ }
+ }
+ }
+ }
+
+ Class [ <internal:http_message> class HttpMessage\Stream implements Psr\Http\Message\StreamInterface ] {
+
+ - Constants [0] {
+ }
+
+ - Static properties [0] {
+ }
+
+ - Static methods [0] {
+ }
+
+ - Properties [1] {
+ Property [ <default> protected $stream ]
+ }
+
+ - Methods [16] {
+ Method [ <internal:http_message, ctor> public method __construct ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <optional> resource $uri ]
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\StreamInterface> public method __toString ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\StreamInterface> public method close ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\StreamInterface> public method detach ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\StreamInterface> public method getSize ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\StreamInterface> public method tell ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\StreamInterface> public method eof ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\StreamInterface> public method isSeekable ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\StreamInterface> public method seek ] {
+
+ - Parameters [2] {
+ Parameter #0 [ <required> $offset ]
+ Parameter #1 [ <optional> $whence ]
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\StreamInterface> public method rewind ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\StreamInterface> public method isWritable ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\StreamInterface> public method write ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $string ]
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\StreamInterface> public method isReadable ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\StreamInterface> public method read ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $length ]
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\StreamInterface> public method getContents ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\StreamInterface> public method getMetadata ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <optional> $key ]
+ }
+ }
+ }
+ }
+
+ Class [ <internal:http_message> class HttpMessage\Uri implements Psr\Http\Message\UriInterface ] {
+
+ - Constants [0] {
+ }
+
+ - Static properties [0] {
+ }
+
+ - Static methods [0] {
+ }
+
+ - Properties [7] {
+ Property [ <default> protected $scheme ]
+ Property [ <default> protected $userInfo ]
+ Property [ <default> protected $host ]
+ Property [ <default> protected $port ]
+ Property [ <default> protected $path ]
+ Property [ <default> protected $query ]
+ Property [ <default> protected $fragment ]
+ }
+
+ - Methods [17] {
+ Method [ <internal:http_message, ctor> public method __construct ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <optional> string $uri ]
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\UriInterface> public method __toString ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\UriInterface> public method getScheme ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\UriInterface> public method withScheme ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $scheme ]
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\UriInterface> public method getAuthority ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\UriInterface> public method getUserInfo ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\UriInterface> public method withUserInfo ] {
+
+ - Parameters [2] {
+ Parameter #0 [ <required> $user ]
+ Parameter #1 [ <optional> $password ]
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\UriInterface> public method getHost ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\UriInterface> public method withHost ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $host ]
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\UriInterface> public method getPort ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\UriInterface> public method withPort ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $port ]
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\UriInterface> public method getPath ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\UriInterface> public method withPath ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $path ]
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\UriInterface> public method getQuery ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\UriInterface> public method withQuery ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $query ]
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\UriInterface> public method getFragment ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\UriInterface> public method withFragment ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $fragment ]
+ }
+ }
+ }
+ }
+
+ Class [ <internal:http_message> class HttpMessage\UploadedFile implements Psr\Http\Message\UploadedFileInterface ] {
+
+ - Constants [0] {
+ }
+
+ - Static properties [0] {
+ }
+
+ - Static methods [0] {
+ }
+
+ - Properties [8] {
+ Property [ <default> protected $stream ]
+ Property [ <default> protected $file ]
+ Property [ <default> protected $size ]
+ Property [ <default> protected $error ]
+ Property [ <default> protected $clientFilename ]
+ Property [ <default> protected $clientMediaType ]
+ Property [ <default> protected $moved ]
+ Property [ <default> protected $checkUploaded ]
+ }
+
+ - Methods [7] {
+ Method [ <internal:http_message, ctor> public method &__construct ] {
+
+ - Parameters [6] {
+ Parameter #0 [ <optional> string or NULL $file ]
+ Parameter #1 [ <optional> integer or NULL $size ]
+ Parameter #2 [ <optional> integer $error ]
+ Parameter #3 [ <optional> string or NULL $clientFilename ]
+ Parameter #4 [ <optional> string or NULL $clientMediaType ]
+ Parameter #5 [ <optional> $checkUploaded ]
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\UploadedFileInterface> public method getStream ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\UploadedFileInterface> public method moveTo ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $targetPath ]
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\UploadedFileInterface> public method getSize ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\UploadedFileInterface> public method getError ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\UploadedFileInterface> public method getClientFilename ] {
+
+ - Parameters [0] {
+ }
+ }
+
+ Method [ <internal:http_message, prototype Psr\Http\Message\UploadedFileInterface> public method getClientMediaType ] {
+
+ - Parameters [0] {
+ }
+ }
+ }
+ }
+ }
+}
+