From 552ea6885ecff386e7b3f7bdb1419018442e20f5 Mon Sep 17 00:00:00 2001 From: kenjis Date: Fri, 3 Nov 2023 16:29:02 +0900 Subject: [PATCH] docs: remove unneeded @depreacted in ResponseInterface::getStatusCode() See https://github.com/php-fig/http-message/blob/master/src/ResponseInterface.php#L30 --- system/HTTP/ResponseInterface.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/system/HTTP/ResponseInterface.php b/system/HTTP/ResponseInterface.php index 878d1488c25d..a6d41c77be3c 100644 --- a/system/HTTP/ResponseInterface.php +++ b/system/HTTP/ResponseInterface.php @@ -110,8 +110,6 @@ interface ResponseInterface extends MessageInterface * to understand and satisfy the request. * * @return int Status code. - * - * @deprecated To be replaced by the PSR-7 version (compatible) */ public function getStatusCode(): int;