* @param int|string|false $expires Expiration time as time() or as strtotime() string value
*
* @return Response Self reference
* @return $this Self reference
*/
public function cache($expires): self
{
@ -231,7 +231,7 @@ class Response
/**
* Sends HTTP headers.
*
* @return Response Self reference
* @return $this Self reference
*/
public function sendHeaders(): self
{
@ -289,7 +289,7 @@ class Response
* @param string $header_string The header string you would pass to header()
* @param bool $replace The optional replace parameter indicates whether the header should replace a previous similar header, or add a second header of the same type. By default it will replace, but if you pass in false as the second argument you can force multiple headers of the same type.
* @param int $response_code The response code to send
* @return self
* @return $this
* @codeCoverageIgnore
*/
public function setRealHeader(string $header_string, bool $replace = true, int $response_code = 0): self {