Skip to content
This repository has been archived by the owner on Aug 11, 2020. It is now read-only.

Commit

Permalink
bug fix live end point
Browse files Browse the repository at this point in the history
  • Loading branch information
fherryfherry committed Sep 30, 2016
1 parent a3ce14c commit 0a2c70c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Controllers/Controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ class Controller extends BaseController

private function checkLiveMode() {
if(config('dokularavel.LIVE_MODE') == TRUE) {
$this->prePaymentUrl = 'http://pay.doku.com/api/payment/PrePayment';
$this->paymentUrl = 'http://pay.doku.com/api/payment/paymentMip';
$this->directPaymentUrl = 'http://pay.doku.com/api/payment/PaymentMIPDirect';
$this->generateCodeUrl = 'http://pay.doku.com/api/payment/doGeneratePaymentCode';
$this->redirectPaymentUrl = 'http://pay.doku.com/api/payment/doInitiatePayment';
$this->captureUrl = 'http://pay.doku.com/api/payment/DoCapture';
$this->prePaymentUrl = 'https://pay.doku.com/api/payment/PrePayment';
$this->paymentUrl = 'https://pay.doku.com/api/payment/paymentMip';
$this->directPaymentUrl = 'https://pay.doku.com/api/payment/PaymentMIPDirect';
$this->generateCodeUrl = 'https://pay.doku.com/api/payment/doGeneratePaymentCode';
$this->redirectPaymentUrl = 'https://pay.doku.com/api/payment/doInitiatePayment';
$this->captureUrl = 'https://pay.doku.com/api/payment/DoCapture';
$this->paymentStatusUrl = 'https://pay.doku.com/Suite/CheckStatus';
}
}
Expand Down

0 comments on commit 0a2c70c

Please sign in to comment.