create config file for service
This commit is contained in:
@@ -15,7 +15,7 @@ class AuthorizationService
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
$this->url = config('');
|
||||
$this->url = config('fib.authorization.url');
|
||||
$this->channelName = '';
|
||||
}
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@ class CancelPaymentService
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
$this->url = config('');
|
||||
$this->url = config('fib.cancelPayment.url');
|
||||
$this->channelName = '';
|
||||
}
|
||||
|
||||
|
||||
@@ -14,7 +14,7 @@ class CheckPaymentStatusService
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
$this->url = config('');
|
||||
$this->url = config('fib.checkPaymentStatus.url');
|
||||
$this->channelName = '';
|
||||
}
|
||||
|
||||
|
||||
@@ -17,7 +17,7 @@ class CreatePaymentService
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
$this->url = config('');
|
||||
$this->url = config('fib.createPayment.url');
|
||||
$this->channelName = '';
|
||||
}
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@ class RefundService
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
$this->url = config('');
|
||||
$this->url = config('fib.refund.url');
|
||||
$this->channelName = '';
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user