Skip to content

Commit c149788

Browse files
committed
Added hash_mode config key to gateway factory.
1 parent eacff32 commit c149788

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"authors": [
66
{
77
"name": "Etienne Dauvergne",
8-
"homepage": "http://ekyna.com"
8+
"homepage": "https://ekyna.com"
99
}
1010
],
1111
"keywords": [

src/PayzenGatewayFactory.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class PayzenGatewayFactory extends GatewayFactory
1616
/**
1717
* Builds a new factory.
1818
*
19-
* @param array $defaultConfig
19+
* @param array $defaultConfig
2020
* @param GatewayFactoryInterface|null $coreGatewayFactory
2121
*
2222
* @return PayzenGatewayFactory
@@ -53,6 +53,7 @@ protected function populateConfig(ArrayObject $config)
5353
'ctx_mode' => null,
5454
'directory' => null,
5555
'endpoint' => null,
56+
'hash_mode' => Api\Api::HASH_MODE_SHA256,
5657
'debug' => false,
5758
];
5859

@@ -69,6 +70,7 @@ protected function populateConfig(ArrayObject $config)
6970
'certificate' => $config['certificate'],
7071
'ctx_mode' => $config['ctx_mode'],
7172
'directory' => $config['directory'],
73+
'hash_mode' => $config['hash_mode'],
7274
'debug' => $config['debug'],
7375
];
7476

0 commit comments

Comments
 (0)