-
Notifications
You must be signed in to change notification settings - Fork 1
/
Init.php
45 lines (43 loc) · 2.01 KB
/
Init.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
<?php
namespace Dfe\TBCBank;
use Dfe\TBCBank\API\Facade as F;
use Dfe\TBCBank\Session as Sess;
use Magento\Quote\Api\Data\AddressInterface as IQA;
use Magento\Quote\Api\Data\PaymentInterface as IQP;
use Magento\Quote\Model\Quote\Address as QA;
use Magento\Quote\Model\Quote\Payment as QP;
# 2018-09-28
final class Init {
/**
* 2018-09-28 $cartId is a string like «63b25f081bfb8e4594725d8a58b012f7» for guests.
* 2017-04-20
* $qp в поле @see \Magento\Framework\DataObject::_data содержит код способа оплаты,
* а также ту дополнительную информацию, которую передала клиентская часть модуля оплаты.
* Например: [additional_data => [], method => "dfe_klarna"].
* 2017-04-05 Важно возвращать именно string: @see dfw_encode()
* 2023-01-28
* «Method's return type must be specified using @return annotation»: https://github.com/mage2pro/core/issues/179
* @return string
*/
function guest(string $cartId, string $email, IQP $qp, IQA $ba = null):string {return $this->p();}
/**
* 2018-09-28
* $qp в поле @see \Magento\Framework\DataObject::_data содержит код способа оплаты,
* а также ту дополнительную информацию, которую передала клиентская часть модуля оплаты.
* Например: [additional_data => [], method => "dfe_klarna"].
* 2017-04-05 Важно возвращать именно string: @see dfw_encode()
* 2023-01-28
* «Method's return type must be specified using @return annotation»: https://github.com/mage2pro/core/issues/179
* @return string
*/
function registered(int $cartId, IQP $qp, IQA $ba = null) {return $this->p();}
/**
* 2018-09-29
* @used-by self::guest()
* @used-by self::registered()
*/
private function p():string {
Sess::s()->data($p = Charge::p()); /** @var array(string => mixed) $p */
return dfw_encode(['id' => F::s()->init($p)]);
}
}