Completed
Push — master ( a107f0...697b33 )
by graychen
12:14 queued 03:42
created
src/actions/JdVerifyAction.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 use graychen\yii2\jd\deposit\filters\JdSignAuth;
5 5
 use yii\filters\VerbFilter;
6 6
 use yii\filters\RateLimiter;
7
-use yii\base\Action;
8 7
 
9 8
 class JdVerifyAction extends action
10 9
 {
Please login to merge, or discard this patch.
src/models/OrderDeposit.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace graychen\yii2\jd\deposit\models;
4 4
 
5
-use Yii;
6 5
 use yii\base\Model;
7 6
 use yii\behaviors\TimestampBehavior;
8 7
 use yii\web\ConflictHttpException;
Please login to merge, or discard this patch.
src/models/SearchDeposit.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace graychen\yii2\jd\deposit\models;
4 4
 
5
-use Yii;
6 5
 use yii\base\Model;
7 6
 use yii\data\ActiveDataProvider;
8 7
 use graychen\yii2\jd\deposit\models\Order;
Please login to merge, or discard this patch.
src/models/Order.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -52,9 +52,9 @@
 block discarded – undo
52 52
     public function rules()
53 53
     {
54 54
         return [
55
-           [['id', 'game_id', 'type','user_id','hours', 'status', 'created_at', 'updated_at', 'payment_method'], 'integer'],
56
-           [['sn',  'serverinfo', 'account', 'password', 'remark', 'client_id', 'name', 'description'], 'safe'],
57
-           [['count', 'final_price'], 'number'],
55
+            [['id', 'game_id', 'type','user_id','hours', 'status', 'created_at', 'updated_at', 'payment_method'], 'integer'],
56
+            [['sn',  'serverinfo', 'account', 'password', 'remark', 'client_id', 'name', 'description'], 'safe'],
57
+            [['count', 'final_price'], 'number'],
58 58
         ];
59 59
     }
60 60
 
Please login to merge, or discard this patch.