-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCharge.php
53 lines (49 loc) · 1.11 KB
/
Charge.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
namespace Dfe\Tinkoff;
/**
* 2017-04-18
* @method Method m()
* @method Settings s()
*/
final class Charge extends \Df\PaypalClone\Charge {
/**
* 2017-08-19
* @override
* @see \Df\PaypalClone\Charge::k_Amount()
* @used-by \Df\PaypalClone\Charge::p()
* @return string
*/
protected function k_Amount() {return '';}
/**
* 2017-08-19
* @override
* @see \Df\PaypalClone\Charge::k_MerchantId()
* @used-by \Df\PaypalClone\Charge::p()
* @return string
*/
protected function k_MerchantId() {return '';}
/**
* 2017-04-18
* @override
* @see \Df\PaypalClone\Charge::pCharge()
* @used-by \Df\PaypalClone\Charge::p()
* @return array(string => mixed)
*/
protected function pCharge() {$s = $this->s(); return [];}
/**
* 2017-04-18
* @override
* @see \Df\PaypalClone\Charge::k_RequestId()
* @used-by \Df\PaypalClone\Charge::p()
* @return string
*/
protected function k_RequestId() {return '';}
/**
* 2017-04-18
* @override
* @see \Df\PaypalClone\Charge::k_Signature()
* @used-by \Df\PaypalClone\Charge::p()
* @return string
*/
protected function k_Signature() {return '';}
}