Skip to content

Commit

Permalink
Fixing qa
Browse files Browse the repository at this point in the history
  • Loading branch information
akadlec committed Apr 2, 2020
1 parent f7eb0b3 commit 9d7c783
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Http/Response.php
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ public function withBody(StreamInterface $body): self
* @param string $text
* @param int $statusCode
*
* @return ResponseInterface
* @return self
*/
public static function text(string $text, int $statusCode = 200): self
{
Expand All @@ -314,7 +314,7 @@ public static function text(string $text, int $statusCode = 200): self
* @param string $html
* @param int $statusCode
*
* @return ResponseInterface
* @return self
*/
public static function html(string $html, int $statusCode = 200): self
{
Expand All @@ -325,7 +325,7 @@ public static function html(string $html, int $statusCode = 200): self
* @param string $xml
* @param int $statusCode
*
* @return ResponseInterface
* @return self
*/
public static function xml(string $xml, int $statusCode = 200): self
{
Expand All @@ -341,7 +341,7 @@ public static function xml(string $xml, int $statusCode = 200): self
* @param int $statusCode
* @param int $encodeOptions
*
* @return ResponseInterface
* @return self
*/
public static function json(array $data, int $statusCode = 200, int $encodeOptions = 0): self
{
Expand All @@ -359,7 +359,7 @@ public static function json(array $data, int $statusCode = 200, int $encodeOptio
* @param string $uri
* @param int $status
*
* @return ResponseInterface
* @return self
*/
public static function redirect(string $uri, int $status = 303): self
{
Expand All @@ -379,7 +379,7 @@ public static function redirect(string $uri, int $status = 303): self
/**
* @param StreamInterface|null $body
*
* @return ResponseInterface
* @return self
*/
public static function notFound(?StreamInterface $body = null): self
{
Expand Down

0 comments on commit 9d7c783

Please sign in to comment.