hey, currently the redirect function not work like the docu describe it. Link
it result in an
because route has null as default $code value which is not valid ( but suggested by the documentation )
so what behavior is the right one ?
(personally i would remove the default value of $code ( and switch $params and $code ) )
it result in an
Code:
Argument 3 passed to CodeIgniter\HTTP\Response::redirect() must be of the type integer, null given
so what behavior is the right one ?
(personally i would remove the default value of $code ( and switch $params and $code ) )
Code:
public function route(string $route, array $params=[], int $code=null, string $method='auto')