Skip to content

Commit cf4ff50

Browse files
committed
Add support for Scellius
1 parent 9854667 commit cf4ff50

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

Api/Api.php

+8-5
Original file line numberDiff line numberDiff line change
@@ -452,16 +452,19 @@ private function getCardsCodes()
452452

453453
private function getEndPoints()
454454
{
455-
return [null, 'SYSTEMPAY'];
455+
return [null, 'SYSTEMPAY', 'SCELLIUS'];
456456
}
457457

458458
private function getUrl()
459459
{
460-
if ($this->config['endpoint'] === 'SYSTEMPAY') {
461-
return 'https://paiement.systempay.fr/vads-payment/';
460+
switch($this->config['endpoint']) {
461+
case 'SYSTEMPAY':
462+
return 'https://paiement.systempay.fr/vads-payment/';
463+
case 'SCELLIUS':
464+
return 'https://scelliuspaiement.labanquepostale.fr/vads-payment/';
465+
default:
466+
return 'https://secure.payzen.eu/vads-payment/';
462467
}
463-
464-
return 'https://secure.payzen.eu/vads-payment/';
465468
}
466469

467470
private function hash(string $content) {

0 commit comments

Comments
 (0)