Completed
Pull Request — master (#269)
by
unknown
03:09
created
controllers/UserController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 use yii\web\BadRequestHttpException;
15 15
 use yii\web\Controller;
16 16
 use yii\filters\VerbFilter;
17
-use yii\filters\AccessControl;
18 17
 use yii\web\NotFoundHttpException;
19 18
 use yii\base\UserException;
20 19
 use yii\mail\BaseMailer;
Please login to merge, or discard this patch.
models/searchs/Menu.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 mdm\admin\models\searchs;
4 4
 
5
-use Yii;
6 5
 use yii\base\Model;
7 6
 use yii\data\ActiveDataProvider;
8 7
 use mdm\admin\models\Menu as MenuModel;
Please login to merge, or discard this patch.
views/layouts/main.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
         echo Nav::widget([
39 39
             'options' => ['class' => 'nav navbar-nav navbar-right'],
40 40
             'items' => $this->context->module->navbar,
41
-         ]);
41
+            ]);
42 42
         NavBar::end();
43 43
         ?>
44 44
 
Please login to merge, or discard this patch.
models/form/ResetPassword.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 mdm\admin\models\searchs;
4 4
 
5
-use Yii;
6 5
 use yii\base\Model;
7 6
 use yii\data\ActiveDataProvider;
8 7
 use mdm\admin\models\Menu as MenuModel;
Please login to merge, or discard this patch.
views/menu/_form.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -27,10 +27,10 @@
 block discarded – undo
27 27
 
28 28
              <?php echo $form->field($model, 'parent')->dropdownList(
29 29
                 $model::find()->select(["CONCAT(id, ' - ',`name` ) as menuname", 'id'])
30
-	  ->indexBy('id')->column(),
31
-                 ['prompt'=>'select parent']
32
-                 );
33
-                  ?>
30
+        ->indexBy('id')->column(),
31
+                    ['prompt'=>'select parent']
32
+                    );
33
+                    ?>
34 34
 
35 35
             <?= $form->field($model, 'route')->textInput(['id' => 'route']) ?>
36 36
         </div>
Please login to merge, or discard this patch.