Endpoint
Table of Contents
- getAuthenticationScopes() : array<string|int, mixed>
- Get security scopes of an endpoint.
- getBody() : array<string|int, mixed>
- Get body for an endpoint.
- getHeaders() : array<string|int, mixed>
- Get the headers of an endpoint.
- getMethod() : string
- Get the HTTP method of an endpoint (like GET, POST, ...).
- getQueryString() : string
- Get the query string of an endpoint without the starting ? (like foo=foo&bar=bar).
- getUri() : string
- Get the URI of an endpoint (like /foo-uri).
- parseResponse() : mixed
- Parse and transform a PSR7 Response into a different object.
Methods
getAuthenticationScopes()
Get security scopes of an endpoint.
public
getAuthenticationScopes() : array<string|int, mixed>
Return values
array<string|int, mixed> —getBody()
Get body for an endpoint.
public
getBody(SerializerInterface $serializer[, mixed $streamFactory = null ]) : array<string|int, mixed>
Return value consist of an array where the first item will be a list of headers to add on the request (like the Content Type) And the second value consist of the body object.
Parameters
- $serializer : SerializerInterface
- $streamFactory : mixed = null
Return values
array<string|int, mixed> —getHeaders()
Get the headers of an endpoint.
public
getHeaders([array<string|int, mixed> $baseHeaders = [] ]) : array<string|int, mixed>
Parameters
- $baseHeaders : array<string|int, mixed> = []
Return values
array<string|int, mixed> —getMethod()
Get the HTTP method of an endpoint (like GET, POST, ...).
public
getMethod() : string
Return values
string —getQueryString()
Get the query string of an endpoint without the starting ? (like foo=foo&bar=bar).
public
getQueryString() : string
Return values
string —getUri()
Get the URI of an endpoint (like /foo-uri).
public
getUri() : string
Return values
string —parseResponse()
Parse and transform a PSR7 Response into a different object.
public
parseResponse(ResponseInterface $response, SerializerInterface $serializer[, string $fetchMode = Client::FETCH_OBJECT ]) : mixed
Implementations may vary depending the status code of the response and the fetch mode used.
Parameters
- $response : ResponseInterface
- $serializer : SerializerInterface
- $fetchMode : string = Client::FETCH_OBJECT