diff --git a/src/Auth.php b/src/Auth.php index f71806b..73fc43c 100644 --- a/src/Auth.php +++ b/src/Auth.php @@ -97,6 +97,12 @@ class Auth $this->id = $this->config['apps']['op']['id']; $this->secret = $this->config['apps']['op']['secret']; break; + case 'payment': + case 'paymeny_api': + $this->id = $this->config['apps']['payment']['id']; + $this->secret = $this->config['apps']['payment']['secret']; + break; + } return $this; }