@@ -2,9 +2,8 @@ |
||
2 | 2 | |
3 | 3 | namespace app\modules\shop\models; |
4 | 4 | |
5 | -use yii\db\ActiveRecord; |
|
6 | -use Yii; |
|
7 | 5 | use app\modules\shop\models\Product; |
6 | +use yii\db\ActiveRecord; |
|
8 | 7 | |
9 | 8 | /** |
10 | 9 | * This is the model class for table "{{%wishlist_product}}". |
@@ -2,8 +2,8 @@ |
||
2 | 2 | |
3 | 3 | namespace app\backend\widgets; |
4 | 4 | |
5 | -use yii\base\Widget; |
|
6 | 5 | use app\backend\models\Notification as NotificationModel; |
6 | +use yii\base\Widget; |
|
7 | 7 | |
8 | 8 | class Notification extends Widget |
9 | 9 | { |
@@ -2,13 +2,13 @@ |
||
2 | 2 | |
3 | 3 | namespace app\modules\shop\controllers; |
4 | 4 | |
5 | -use yii\web\Controller; |
|
6 | 5 | use Yii; |
7 | -use yii\web\Response; |
|
8 | 6 | use app\modules\shop\models\Wishlist; |
9 | -use yii\web\NotFoundHttpException; |
|
10 | -use yii\web\BadRequestHttpException; |
|
11 | 7 | use app\modules\shop\models\WishlistProduct; |
8 | +use yii\web\BadRequestHttpException; |
|
9 | +use yii\web\Controller; |
|
10 | +use yii\web\NotFoundHttpException; |
|
11 | +use yii\web\Response; |
|
12 | 12 | |
13 | 13 | class WishlistController extends Controller |
14 | 14 | { |
@@ -2,11 +2,11 @@ |
||
2 | 2 | |
3 | 3 | namespace app\modules\shop\models; |
4 | 4 | |
5 | -use yii\db\ActiveRecord; |
|
6 | 5 | use Yii; |
7 | -use app\modules\user\models\User; |
|
8 | -use app\modules\shop\models\WishlistProduct; |
|
9 | 6 | use app\modules\shop\models\Currency; |
7 | +use app\modules\shop\models\WishlistProduct; |
|
8 | +use app\modules\user\models\User; |
|
9 | +use yii\db\ActiveRecord; |
|
10 | 10 | |
11 | 11 | /** |
12 | 12 | * This is the model class for table "{{%wishlist}}". |