Test Setup Failed
Push — master ( 09e290...352899 )
by Xu
41:32
created
src/admin/views/security/login.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
                 'autocomplete' => 'off',
57 57
                 'placeholder' => Yii::t('yuncms', 'Password')
58 58
             ],
59
-           'errorOptions' => ['class' => 'help-block help-block-error full-width','style'=>'text-align:left'],
59
+            'errorOptions' => ['class' => 'help-block help-block-error full-width','style'=>'text-align:left'],
60 60
         ])->passwordInput()->label(false) ?>
61 61
 
62 62
         <?= $form->field($model, 'verifyCode', [
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
                 'autocomplete' => 'off',
49 49
                 'placeholder' => Yii::t('yuncms', 'Username')
50 50
             ],
51
-            'errorOptions' => ['class' => 'help-block help-block-error full-width','style'=>'text-align:left'],
51
+            'errorOptions' => ['class' => 'help-block help-block-error full-width', 'style'=>'text-align:left'],
52 52
         ])->label(false); ?>
53 53
 
54 54
         <?= $form->field($model, 'password', [
@@ -56,11 +56,11 @@  discard block
 block discarded – undo
56 56
                 'autocomplete' => 'off',
57 57
                 'placeholder' => Yii::t('yuncms', 'Password')
58 58
             ],
59
-           'errorOptions' => ['class' => 'help-block help-block-error full-width','style'=>'text-align:left'],
59
+           'errorOptions' => ['class' => 'help-block help-block-error full-width', 'style'=>'text-align:left'],
60 60
         ])->passwordInput()->label(false) ?>
61 61
 
62 62
         <?= $form->field($model, 'verifyCode', [
63
-            'errorOptions' => ['class' => 'help-block help-block-error full-width','style'=>'text-align:left'],
63
+            'errorOptions' => ['class' => 'help-block help-block-error full-width', 'style'=>'text-align:left'],
64 64
         ])->widget(Captcha::class, [
65 65
             'captchaAction' => '/admin/security/captcha',
66 66
             'options' => [
Please login to merge, or discard this patch.
src/admin/controllers/RuleController.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -71,10 +71,10 @@  discard block
 block discarded – undo
71 71
         $model = new AdminBizRule(null);
72 72
         if ($model->load(Yii::$app->request->post()) && $model->save()) {
73 73
             RBACHelper::invalidate();
74
-            Yii::$app->getSession()->setFlash('success', Yii::t('yuncms','Create success.'));
74
+            Yii::$app->getSession()->setFlash('success', Yii::t('yuncms', 'Create success.'));
75 75
             return $this->redirect(['view', 'id' => $model->name]);
76 76
         } else {
77
-            return $this->render('create', ['model' => $model,]);
77
+            return $this->render('create', ['model' => $model, ]);
78 78
         }
79 79
     }
80 80
 
@@ -91,11 +91,11 @@  discard block
 block discarded – undo
91 91
         $model = $this->findModel($id);
92 92
         if ($model->load(Yii::$app->request->post()) && $model->save()) {
93 93
             RBACHelper::invalidate();
94
-            Yii::$app->getSession()->setFlash('success', Yii::t('yuncms','Update success.'));
94
+            Yii::$app->getSession()->setFlash('success', Yii::t('yuncms', 'Update success.'));
95 95
             return $this->redirect(['view', 'id' => $model->name]);
96 96
         }
97 97
 
98
-        return $this->render('update', ['model' => $model,]);
98
+        return $this->render('update', ['model' => $model, ]);
99 99
     }
100 100
 
101 101
     /**
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
         $model = $this->findModel($id);
111 111
         Yii::$app->authManager->remove($model->item);
112 112
         RBACHelper::invalidate();
113
-        Yii::$app->getSession()->setFlash('success', Yii::t('yuncms','Delete success.'));
113
+        Yii::$app->getSession()->setFlash('success', Yii::t('yuncms', 'Delete success.'));
114 114
         return $this->redirect(['index']);
115 115
     }
116 116
 
Please login to merge, or discard this patch.
src/admin/actions/Action.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -206,7 +206,7 @@
 block discarded – undo
206 206
 
207 207
         foreach ((array)$message as $key => $value) {
208 208
             if (is_scalar($value)) {
209
-                $value = preg_replace_callback("/{(\\w+)}/", function ($matches) use ($params) {
209
+                $value = preg_replace_callback("/{(\\w+)}/", function($matches) use ($params) {
210 210
                     $paramName = $matches[1];
211 211
                     return isset($params[$paramName]) ? $params[$paramName] : $paramName;
212 212
                 }, $value);
Please login to merge, or discard this patch.
src/admin/widgets/Nav.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
                 return $item;
140 140
             }
141 141
             if (!isset ($item['label'])) {
142
-                throw new InvalidConfigException ("The 'label' option is required.");
142
+                throw new InvalidConfigException("The 'label' option is required.");
143 143
             }
144 144
             $encodeLabel = isset ($item['encode']) ? $item['encode'] : $this->encodeLabels;
145 145
 
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
                 }
169 169
 
170 170
                 $subItems = $this->renderItems($subItems);
171
-                if($subItems){
171
+                if ($subItems) {
172 172
                     $submenuTemplate = ArrayHelper::getValue($item, 'submenuTemplate', $this->submenuTemplate);
173 173
                     $subItems = strtr($submenuTemplate, [
174 174
                         '{items}' => $this->renderItems($subItems),
Please login to merge, or discard this patch.
src/admin/widgets/PaceAsset.php 2 patches
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -4,25 +4,25 @@
 block discarded – undo
4 4
  * @copyright Copyright (c) 2012 TintSoft Technology Co. Ltd.
5 5
  * @license http://www.tintsoft.com/license/
6 6
  */
7
- namespace xutl\inspinia;
7
+    namespace xutl\inspinia;
8 8
 
9
- use yii\web\View;
10
- use yii\web\AssetBundle;
9
+    use yii\web\View;
10
+    use yii\web\AssetBundle;
11 11
 
12
- class PaceAsset extends AssetBundle{
13
-     public $sourcePath = '@yuncms/admin/resources/assets';
12
+    class PaceAsset extends AssetBundle{
13
+        public $sourcePath = '@yuncms/admin/resources/assets';
14 14
 
15
-     /**
16
-      * 发布参数
17
-      *
18
-      * @var array
19
-      */
20
-     public $jsOptions = [
21
-         'position' => View::POS_HEAD,
22
-         'data-pace-options' => ['restartOnRequestAfter' => true]
23
-     ];
15
+        /**
16
+         * 发布参数
17
+         *
18
+         * @var array
19
+         */
20
+        public $jsOptions = [
21
+            'position' => View::POS_HEAD,
22
+            'data-pace-options' => ['restartOnRequestAfter' => true]
23
+        ];
24 24
 
25
-     public $js = [
26
-         'js/plugins/pace/pace.min.js'
27
-     ];
28
- }
29 25
\ No newline at end of file
26
+        public $js = [
27
+            'js/plugins/pace/pace.min.js'
28
+        ];
29
+    }
30 30
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  use yii\web\View;
10 10
  use yii\web\AssetBundle;
11 11
 
12
- class PaceAsset extends AssetBundle{
12
+ class PaceAsset extends AssetBundle {
13 13
      public $sourcePath = '@yuncms/admin/resources/assets';
14 14
 
15 15
      /**
Please login to merge, or discard this patch.
src/admin/widgets/Box.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
      * @see \yii\helpers\Html::renderTagAttributes() for details on how attributes are being rendered.
39 39
      * @since 2.0.1
40 40
      */
41
-    public $footerOptions =[];
41
+    public $footerOptions = [];
42 42
 
43 43
     public $closeButton = true;
44 44
 
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
     protected function renderTools()
135 135
     {
136 136
         $tools = '';
137
-        if($this->collapseButton !== false){
137
+        if ($this->collapseButton !== false) {
138 138
             $tools .= '<a class="collapse-link"><i class="fa fa-chevron-up"></i></a>';
139 139
         }
140 140
         if ($this->closeButton !== false) {
Please login to merge, or discard this patch.
src/admin/widgets/Alert.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
 
61 61
         foreach ($flashes as $type => $data) {
62 62
             if (isset($this->alertTypes[$type])) {
63
-                $data = (array) $data;
63
+                $data = (array)$data;
64 64
                 foreach ($data as $i => $message) {
65 65
                     /* initialize css class for each alert box */
66 66
                     $this->options['class'] = $this->alertTypes[$type] . $appendCss;
Please login to merge, or discard this patch.
src/assets/FontAwesomeAsset.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
     public function init()
37 37
     {
38 38
         parent::init();
39
-        $this->publishOptions['beforeCopy'] = function ($from, $to) {
39
+        $this->publishOptions['beforeCopy'] = function($from, $to) {
40 40
             return preg_match('%(/|\\\\)(fonts|css)%', $from);
41 41
         };
42 42
     }
Please login to merge, or discard this patch.
src/admin/ItemController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
         $model = new AdminAuthItem(null);
80 80
         $model->type = $this->type;
81 81
         if ($model->load(Yii::$app->getRequest()->post()) && $model->save()) {
82
-            Yii::$app->getSession()->setFlash('success', Yii::t('yuncms','Create success.'));
82
+            Yii::$app->getSession()->setFlash('success', Yii::t('yuncms', 'Create success.'));
83 83
             return $this->redirect(['view', 'id' => $model->name]);
84 84
         } else {
85 85
             return $this->render('create', ['model' => $model]);
Please login to merge, or discard this patch.