This commit is contained in:
2021-03-16 14:37:52 +08:00
parent 9a22a92410
commit d925ca19bb
4 changed files with 39 additions and 25 deletions
+2 -2
View File
@@ -592,10 +592,10 @@ if (!function_exists('send')) {
/**
* @param $context
* @param $statusCode
* @return bool|Response|stdClass|string
* @return mixed
* @throws Exception
*/
function send($context, $statusCode = 404): Response|bool|string|stdClass
function send($context, $statusCode = 404): mixed
{
return \response()->send($context, $statusCode);
}