Completed
Branch master (33e91a)
by Andrii
07:46
created
src/controllers/PayController.php 2 patches
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,7 +52,6 @@  discard block
 block discarded – undo
52 52
     }
53 53
 
54 54
     /**
55
-     * @param string $transactionId
56 55
      * @return string
57 56
      */
58 57
     public function actionReturn()
@@ -130,7 +129,7 @@  discard block
 block discarded – undo
130 129
      *  - `returnPage/Url` - page or URL to return user from payment system on success
131 130
      *  - `cancelPage/Url` - page or URL to return user from payment system on fail
132 131
      *  - `notifyPage/Url` - page or URL used by payment system to notify us on successful payment
133
-     * @return \yii\web\Response
132
+     * @return string
134 133
      */
135 134
     public function renderDeposit(array $data)
136 135
     {
Please login to merge, or discard this patch.
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -11,15 +11,12 @@
 block discarded – undo
11 11
 
12 12
 namespace hiqdev\yii2\merchant\controllers;
13 13
 
14
-use hiqdev\yii2\merchant\models\Deposit;
15
-use hiqdev\yii2\merchant\Module;
16 14
 use Yii;
17 15
 use yii\base\InvalidCallException;
18 16
 use yii\base\UserException;
19 17
 use yii\helpers\Json;
20 18
 use yii\web\BadRequestHttpException;
21 19
 use yii\web\Response;
22
-use yii\web\Session;
23 20
 
24 21
 class PayController extends \yii\web\Controller
25 22
 {
Please login to merge, or discard this patch.