DeterminesStatusCode
trait DeterminesStatusCode (View source)
Methods
Determine if the response code was 200 "OK" response.
Determine if the response code was 201 "Created" response.
Determine if the response code was 202 "Accepted" response.
Determine if the response code was the given status code and the body has no content.
Determine if the response code was a 301 "Moved Permanently".
Determine if the response code was a 302 "Found" response.
Determine if the response code was a 304 "Not Modified" response.
Determine if the response was a 400 "Bad Request" response.
Determine if the response was a 401 "Unauthorized" response.
Determine if the response was a 402 "Payment Required" response.
Determine if the response was a 403 "Forbidden" response.
Determine if the response was a 404 "Not Found" response.
Determine if the response was a 408 "Request Timeout" response.
Determine if the response was a 409 "Conflict" response.
Determine if the response was a 422 "Unprocessable Entity" response.
Determine if the response was a 429 "Too Many Requests" response.
Details
bool
ok()
Determine if the response code was 200 "OK" response.
bool
created()
Determine if the response code was 201 "Created" response.
bool
accepted()
Determine if the response code was 202 "Accepted" response.
bool
noContent(int $status = 204)
Determine if the response code was the given status code and the body has no content.
bool
movedPermanently()
Determine if the response code was a 301 "Moved Permanently".
bool
found()
Determine if the response code was a 302 "Found" response.
bool
notModified()
Determine if the response code was a 304 "Not Modified" response.
bool
badRequest()
Determine if the response was a 400 "Bad Request" response.
bool
unauthorized()
Determine if the response was a 401 "Unauthorized" response.
bool
paymentRequired()
Determine if the response was a 402 "Payment Required" response.
bool
forbidden()
Determine if the response was a 403 "Forbidden" response.
bool
notFound()
Determine if the response was a 404 "Not Found" response.
bool
requestTimeout()
Determine if the response was a 408 "Request Timeout" response.
bool
conflict()
Determine if the response was a 409 "Conflict" response.
bool
unprocessableEntity()
Determine if the response was a 422 "Unprocessable Entity" response.
bool
tooManyRequests()
Determine if the response was a 429 "Too Many Requests" response.