From 1fb93b0aab42392aa0a742db205173b49afaf80f Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Thu, 16 Dec 2021 22:58:21 +0100 Subject: [PATCH] [5.4] cs fixes --- Cookie.php | 2 -- Response.php | 4 ---- 2 files changed, 6 deletions(-) diff --git a/Cookie.php b/Cookie.php index 758fc14..d4be131 100644 --- a/Cookie.php +++ b/Cookie.php @@ -311,8 +311,6 @@ public function isExpired() /** * Gets the samesite attribute of the cookie. - * - * @return string|null */ public function getSameSite(): ?string { diff --git a/Response.php b/Response.php index 65e7fd2..f38ca4f 100644 --- a/Response.php +++ b/Response.php @@ -37,8 +37,6 @@ public function __construct(string $content = '', int $status = 200, array $head /** * Converts the response object to string containing all headers and the response content. - * - * @return string */ public function __toString(): string { @@ -58,8 +56,6 @@ public function __toString(): string /** * Gets the response content. - * - * @return string */ public function getContent(): string {