Merge pull request #672 from ATC-4K/patch-1

Added @return never to Response.php
This commit is contained in:
Simon Sessingø
2023-11-21 16:10:16 +01:00
committed by GitHub
+3 -1
View File
@@ -32,6 +32,8 @@ class Response
*
* @param string $url
* @param ?int $httpCode
*
* @return never
*/
public function redirect(string $url, ?int $httpCode = null): void
{
@@ -127,4 +129,4 @@ class Response
return $this;
}
}
}