-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSettings.php
More file actions
26 lines (24 loc) · 855 Bytes
/
Settings.php
File metadata and controls
26 lines (24 loc) · 855 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
namespace Dfe\PostFinance;
# 2017-08-18
/** @method static Settings s() */
final class Settings extends \Df\Payment\Settings {
/**
* 2017-08-21 «Hash algorithm».
* `[PostFinance] How to setup the «Hash algorithm» option?`: https://mage2.pro/t/4362
* @used-by \Dfe\PostFinance\Signer::sign()
*/
function hashAlgorithm():string {return $this->testable();}
/**
* 2017-08-20 «SHA-IN pass phrase».
* `[PostFinance] How to setup my «SHA-IN pass phrase»?`: https://mage2.pro/t/4355
* @used-by \Dfe\PostFinance\Signer::sign()
*/
function password1():string {return $this->testableP();}
/**
* 2017-08-20 «SHA-OUT pass phrase».
* `[PostFinance] How to setup my «SHA-OUT pass phrase»?`: https://mage2.pro/t/4359
* @used-by \Dfe\PostFinance\Signer::sign()
*/
function password2():string {return $this->testableP();}
}