setUrl() public method

Set Url to Redirect
public setUrl ( string $url )
$url string
Example #1
0
 /**
  * Redirect to URL
  *
  * @param  string $url
  * @return void
  * @throws RedirectException
  */
 public static function redirect($url)
 {
     $redirect = new RedirectException();
     $redirect->setUrl($url);
     throw $redirect;
 }