-
Notifications
You must be signed in to change notification settings - Fork 1
/
Settings.php
27 lines (26 loc) · 1013 Bytes
/
Settings.php
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
27
<?php
namespace Dfe\Robokassa;
# 2017-04-10
/** @method static Settings s() */
final class Settings extends \Df\Payment\Settings {
/**
* 2017-04-12
* «Password #1».
* «This is for the payment initiation interface.
* It must by at least 8 characters long and contain at least one letter and one digit.»
* http://docs.robokassa.ru/en#5197
* [Robokassa] Where are my API credentials and settings located? https://mage2.pro/t/3667
* @used-by \Dfe\Robokassa\Signer\Request::values()
*/
function password1():string {return $this->testableP();}
/**
* 2017-04-12
* «Password #2».
* «This is for the payment notification interface and XML-interfaces.
* It must by at least 8 characters long and contain at least one letter and one digit.»
* http://docs.robokassa.ru/en#5197
* [Robokassa] Where are my API credentials and settings located? https://mage2.pro/t/3667
* @used-by \Dfe\Robokassa\Signer\Response::values()
*/
function password2():string {return $this->testableP();}
}