SYMBOL INDEX (77 symbols across 7 files) FILE: src/MessageInterface.php type MessageInterface (line 17) | interface MessageInterface method getProtocolVersion (line 26) | public function getProtocolVersion(): string; method withProtocolVersion (line 41) | public function withProtocolVersion(string $version): MessageInterface; method getHeaders (line 68) | public function getHeaders(): array; method hasHeader (line 78) | public function hasHeader(string $name): bool; method getHeader (line 94) | public function getHeader(string $name): array; method getHeaderLine (line 115) | public function getHeaderLine(string $name): string; method withHeader (line 132) | public function withHeader(string $name, $value): MessageInterface; method withAddedHeader (line 150) | public function withAddedHeader(string $name, $value): MessageInterface; method withoutHeader (line 164) | public function withoutHeader(string $name): MessageInterface; method getBody (line 171) | public function getBody(): StreamInterface; method withBody (line 186) | public function withBody(StreamInterface $body): MessageInterface; FILE: src/RequestInterface.php type RequestInterface (line 24) | interface RequestInterface extends MessageInterface method getRequestTarget (line 42) | public function getRequestTarget(): string; method withRequestTarget (line 61) | public function withRequestTarget(string $requestTarget): RequestInter... method getMethod (line 69) | public function getMethod(): string; method withMethod (line 86) | public function withMethod(string $method): RequestInterface; method getUri (line 97) | public function getUri(): UriInterface; method withUri (line 129) | public function withUri(UriInterface $uri, bool $preserveHost = false)... FILE: src/ResponseInterface.php type ResponseInterface (line 20) | interface ResponseInterface extends MessageInterface method getStatusCode (line 30) | public function getStatusCode(): int; method withStatus (line 52) | public function withStatus(int $code, string $reasonPhrase = ''): Resp... method getReasonPhrase (line 67) | public function getReasonPhrase(): string; FILE: src/ServerRequestInterface.php type ServerRequestInterface (line 43) | interface ServerRequestInterface extends RequestInterface method getServerParams (line 54) | public function getServerParams(): array; method getCookieParams (line 66) | public function getCookieParams(): array; method withCookieParams (line 85) | public function withCookieParams(array $cookies): ServerRequestInterface; method getQueryParams (line 99) | public function getQueryParams(): array; method withQueryParams (line 123) | public function withQueryParams(array $query): ServerRequestInterface; method getUploadedFiles (line 137) | public function getUploadedFiles(): array; method withUploadedFiles (line 150) | public function withUploadedFiles(array $uploadedFiles): ServerRequest... method getParsedBody (line 167) | public function getParsedBody(); method withParsedBody (line 197) | public function withParsedBody($data): ServerRequestInterface; method getAttributes (line 210) | public function getAttributes(): array; method getAttribute (line 227) | public function getAttribute(string $name, $default = null); method withAttribute (line 244) | public function withAttribute(string $name, $value): ServerRequestInte... method withoutAttribute (line 260) | public function withoutAttribute(string $name): ServerRequestInterface; FILE: src/StreamInterface.php type StreamInterface (line 12) | interface StreamInterface method __toString (line 28) | public function __toString(): string; method close (line 35) | public function close(): void; method detach (line 44) | public function detach(); method getSize (line 51) | public function getSize(): ?int; method tell (line 59) | public function tell(): int; method eof (line 66) | public function eof(): bool; method isSeekable (line 73) | public function isSeekable(): bool; method seek (line 87) | public function seek(int $offset, int $whence = SEEK_SET): void; method rewind (line 99) | public function rewind(): void; method isWritable (line 106) | public function isWritable(): bool; method write (line 115) | public function write(string $string): int; method isReadable (line 122) | public function isReadable(): bool; method read (line 134) | public function read(int $length): string; method getContents (line 143) | public function getContents(): string; method getMetadata (line 157) | public function getMetadata(?string $key = null); FILE: src/UploadedFileInterface.php type UploadedFileInterface (line 13) | interface UploadedFileInterface method getStream (line 31) | public function getStream(): StreamInterface; method moveTo (line 65) | public function moveTo(string $targetPath): void; method getSize (line 76) | public function getSize(): ?int; method getError (line 92) | public function getError(): int; method getClientFilename (line 107) | public function getClientFilename(): ?string; method getClientMediaType (line 122) | public function getClientMediaType(): ?string; FILE: src/UriInterface.php type UriInterface (line 25) | interface UriInterface method getScheme (line 41) | public function getScheme(): string; method getAuthority (line 61) | public function getAuthority(): string; method getUserInfo (line 78) | public function getUserInfo(): string; method getHost (line 91) | public function getHost(): string; method getPort (line 108) | public function getPort(): ?int; method getPath (line 135) | public function getPath(): string; method getQuery (line 157) | public function getQuery(): string; method getFragment (line 175) | public function getFragment(): string; method withScheme (line 192) | public function withScheme(string $scheme): UriInterface; method withUserInfo (line 208) | public function withUserInfo(string $user, ?string $password = null): ... method withHost (line 222) | public function withHost(string $host): UriInterface; method withPort (line 241) | public function withPort(?int $port): UriInterface; method withPath (line 265) | public function withPath(string $path): UriInterface; method withQuery (line 282) | public function withQuery(string $query): UriInterface; method withFragment (line 298) | public function withFragment(string $fragment): UriInterface; method __toString (line 323) | public function __toString(): string;