Markette\Gopay\Service\AbstractService::setSuccessUrl PHP 메소드

setSuccessUrl() 공개 메소드

Sets URL when successful
public setSuccessUrl ( string $url ) : self
$url string
리턴 self
    public function setSuccessUrl($url)
    {
        if (substr($url, 0, 4) !== 'http') {
            $url = 'http://' . $url;
        }
        $this->successUrl = $url;
        return $this;
    }