@@ -25,6 +25,9 @@ discard block |
||
25 | 25 | /** @var string */ |
26 | 26 | private $tempDir; |
27 | 27 | |
28 | + /** |
|
29 | + * @param string $tempDir |
|
30 | + */ |
|
28 | 31 | public function __construct($tempDir) |
29 | 32 | { |
30 | 33 | $this->tempDir = $tempDir; |
@@ -76,6 +79,9 @@ discard block |
||
76 | 79 | return new Pay\XMLResponse($response->getContents()); |
77 | 80 | } |
78 | 81 | |
82 | + /** |
|
83 | + * @param \Closure $fallback |
|
84 | + */ |
|
79 | 85 | private function request($token, $fallback) |
80 | 86 | { |
81 | 87 | $request = new GuzzleHttp\Client(['headers' => ['X-Powered-By' => 'h4kuna/fio']]); |
@@ -104,6 +110,9 @@ discard block |
||
104 | 110 | return $response->getBody(); |
105 | 111 | } |
106 | 112 | |
113 | + /** |
|
114 | + * @param string $filename |
|
115 | + */ |
|
107 | 116 | private static function sleep($filename) |
108 | 117 | { |
109 | 118 | $criticalTime = time() - filemtime($filename); |
@@ -126,6 +135,9 @@ discard block |
||
126 | 135 | return self::$tokens[$key]; |
127 | 136 | } |
128 | 137 | |
138 | + /** |
|
139 | + * @param string $filename |
|
140 | + */ |
|
129 | 141 | private static function safeProtocol($filename) |
130 | 142 | { |
131 | 143 | return Utils\SafeStream::PROTOCOL . '://' . $filename; |