@@ -4,7 +4,6 @@ |
||
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 | { |
@@ -2,7 +2,6 @@ |
||
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; |
@@ -2,7 +2,6 @@ |
||
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; |
@@ -52,9 +52,9 @@ |
||
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 |