/home/techb158/ileadtechnology.com/vendor/tzsk/payu/src/Helpers
Edit: /home/techb158/ileadtechnology.com/vendor/tzsk/payu/src/Helpers/Redirector.php (1198B)
url = url($url, $parameters, $secure);
return $this;
}
/**
* Set Redirect Action.
*
* @param $action
* @param array|null $parameters
* @param bool $absolute
* @return $this
*/
public function redirectAction($action, $parameters = [], $absolute = true)
{
$this->url = action($action, $parameters, $absolute);
return $this;
}
/**
* Set Redirect Action.
*
* @param $route
* @param array|null $parameters
* @param bool $absolute
* @return $this
*/
public function redirectRoute($route, $parameters = [], $absolute = true)
{
$this->url = route($route, $parameters, $absolute);
return $this;
}
/**
* @return mixed
*/
public function getUrl()
{
return $this->url;
}
}