@@ -24,7 +24,7 @@ |
||
24 | 24 | /** |
25 | 25 | * __construct. |
26 | 26 | * |
27 | - * @param \Payum\Core\Model\GetStatusInterface $status |
|
27 | + * @param GetStatusInterface $status |
|
28 | 28 | * @param \Payum\Core\Model\PaymentInterface $payment |
29 | 29 | */ |
30 | 30 | public function __construct(GetStatusInterface $status, PaymentInterface $payment) |
@@ -241,7 +241,7 @@ discard block |
||
241 | 241 | * receiveAuthorize. |
242 | 242 | * |
243 | 243 | * @param string $payumToken |
244 | - * @return mixed |
|
244 | + * @return \Symfony\Component\HttpFoundation\Response |
|
245 | 245 | */ |
246 | 246 | public function receiveAuthorize($payumToken) |
247 | 247 | { |
@@ -257,7 +257,7 @@ discard block |
||
257 | 257 | * receiveCapture. |
258 | 258 | * |
259 | 259 | * @param string $payumToken |
260 | - * @return mixed |
|
260 | + * @return \Symfony\Component\HttpFoundation\Response |
|
261 | 261 | */ |
262 | 262 | public function receiveCapture($payumToken = null) |
263 | 263 | { |
@@ -273,7 +273,7 @@ discard block |
||
273 | 273 | * receiveNotify. |
274 | 274 | * |
275 | 275 | * @param string $payumToken |
276 | - * @return mixed |
|
276 | + * @return \Symfony\Component\HttpFoundation\Response |
|
277 | 277 | */ |
278 | 278 | public function receiveNotify($payumToken) |
279 | 279 | { |
@@ -288,7 +288,7 @@ discard block |
||
288 | 288 | * receiveNotifyUnsafe. |
289 | 289 | * |
290 | 290 | * @param string $gatewayName |
291 | - * @return mixed |
|
291 | + * @return \Illuminate\Http\Response|\Symfony\Component\HttpFoundation\Response |
|
292 | 292 | */ |
293 | 293 | public function receiveNotifyUnsafe($gatewayName) |
294 | 294 | { |
@@ -306,7 +306,7 @@ discard block |
||
306 | 306 | * receivePayout. |
307 | 307 | * |
308 | 308 | * @param string $payumToken |
309 | - * @return mixed |
|
309 | + * @return \Symfony\Component\HttpFoundation\Response |
|
310 | 310 | */ |
311 | 311 | public function receivePayout($payumToken) |
312 | 312 | { |
@@ -322,7 +322,7 @@ discard block |
||
322 | 322 | * receiveCancel. |
323 | 323 | * |
324 | 324 | * @param string $payumToken |
325 | - * @return mixed |
|
325 | + * @return \Symfony\Component\HttpFoundation\Response |
|
326 | 326 | */ |
327 | 327 | public function receiveCancel($payumToken) |
328 | 328 | { |
@@ -342,7 +342,7 @@ discard block |
||
342 | 342 | * receiveRefund. |
343 | 343 | * |
344 | 344 | * @param string $payumToken |
345 | - * @return mixed |
|
345 | + * @return \Symfony\Component\HttpFoundation\Response |
|
346 | 346 | */ |
347 | 347 | public function receiveRefund($payumToken) |
348 | 348 | { |
@@ -362,7 +362,7 @@ discard block |
||
362 | 362 | * receiveSync. |
363 | 363 | * |
364 | 364 | * @param string $payumToken |
365 | - * @return mixed |
|
365 | + * @return \Symfony\Component\HttpFoundation\Response |
|
366 | 366 | */ |
367 | 367 | public function receiveSync($payumToken) |
368 | 368 | { |
@@ -379,7 +379,7 @@ discard block |
||
379 | 379 | * |
380 | 380 | * @param string $payumToken |
381 | 381 | * @param callable $closure |
382 | - * @return mixed |
|
382 | + * @return \Symfony\Component\HttpFoundation\Response |
|
383 | 383 | */ |
384 | 384 | public function receiveDone($payumToken, callable $closure) |
385 | 385 | { |
@@ -391,7 +391,7 @@ discard block |
||
391 | 391 | * |
392 | 392 | * @param string $payumToken |
393 | 393 | * @param callable $closure |
394 | - * @return mixed |
|
394 | + * @return \Symfony\Component\HttpFoundation\Response |
|
395 | 395 | */ |
396 | 396 | public function done($payumToken, callable $closure) |
397 | 397 | { |
@@ -428,7 +428,6 @@ discard block |
||
428 | 428 | /** |
429 | 429 | * getSessionFromRequest. |
430 | 430 | * |
431 | - * @param \Illuminate\Http\Request $request |
|
432 | 431 | * @return \Symfony\Component\HttpFoundation\Session\SessionInterface|null |
433 | 432 | */ |
434 | 433 | protected function getSessionFromRequest() |