/**
* Convenience method that works with the current global $request and
* $router instances to redirect using named/reverse-routed routes
* to determine the URL to go to.
*
* If more control is needed, you must use $response->redirect explicitly.
*
* @param string|null $route Route name or Controller::method
*/
function redirect(?string
$route = null
): RedirectResponse
{ $response = Services::
redirectresponse(null, true
);
if (!
empty($route)) { return $response->
route($route);
} return $response;
}}if (!
function_exists('_solidus'
)) { /**
* Generates the solidus character (`/`) depending on the HTML5 compatibility flag in `Config\DocTypes`
*
* @param DocTypes|null $docTypesConfig New config. For testing purpose only.
*
* @internal
*/