-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathResult.php
47 lines (43 loc) · 1.36 KB
/
Result.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
<?php
namespace Dfe\Qiwi;
# 2017-09-12
/** @final Unable to use the PHP «final» keyword here because of the M2 code generation. */
class Result extends \Df\Framework\W\Result\Xml {
/**
* 2021-12-03
* @override
* @see \Df\Framework\W\Result\Xml::contents()
* @used-by \Df\Framework\W\Result\Xml::__toString()
* @return array(string => mixed)
*/
protected function contents():array {return ['result_code' => $this->_code];}
/**
* 2017-09-13, 2021-12-03
* QIWI Wallet requires it to be «text/xml», not «application/xml»:
* https://github.com/QIWI-API/pull-payments-docs/blob/40d48cf0/_notification_en.html.md#requirements-to-the-response-for-notification
* @override
* @see \Df\Framework\W\Result\Xml::contentType()
* @used-by \Df\Framework\W\Result\Xml::render()
*/
protected function contentType():string {return 'text/xml';}
/**
* 2021-12-03
* @override
* @see \Df\Framework\W\Result\Xml::tag()
* @used-by \Df\Framework\W\Result\Xml::__toString()
*/
final protected function tag():string {return 'result';}
/**
* 2017-09-13
* @used-by self::contents()
* @used-by self::i()
* @var int
*/
private $_code;
/**
* 2017-09-13
* @used-by \Dfe\Qiwi\W\Responder::error()
* @used-by \Dfe\Qiwi\W\Responder::success()
*/
final static function i(int $code):self {/** @var self $i */ $i = new self; $i->_code = $code; return $i;}
}