Test Setup Failed
Push — master ( 549782...5056ce )
by eXeCUT
10:33
created
action/adapter/gridView/ModelHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -146,7 +146,7 @@
 block discarded – undo
146 146
             'actions' => [
147 147
                 'class' => ActionColumn::className(),
148 148
                 'buttons' => [
149
-                    'view' => function () {},
149
+                    'view' => function() {},
150 150
                 ],
151 151
             ],
152 152
         ];
Please login to merge, or discard this patch.
action/adapter/Edit.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
             $editFormLabel = $this->getEditFormLabel($this->model);
150 150
         }
151 151
 
152
-        $editFormLabel  = strtr($this->labelTemplate, [
152
+        $editFormLabel = strtr($this->labelTemplate, [
153 153
             '{label}' => $editFormLabel,
154 154
             '{closeButton}' => $this->closeButton,
155 155
         ]);
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
     }
159 159
 
160 160
     protected function getCreateFormLabel() {
161
-        $m  = $this->createFormLabel;
161
+        $m = $this->createFormLabel;
162 162
 
163 163
         $t = $this->translate($m);
164 164
 
Please login to merge, or discard this patch.
activeRecord/MassEditTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -265,7 +265,7 @@
 block discarded – undo
265 265
                 'displayOnly' => false,
266 266
                 'type' => DetailView::INPUT_WIDGET,
267 267
                 'attribute' => 'id',
268
-                'value' => function () use ($modelsNames) {
268
+                'value' => function() use ($modelsNames) {
269 269
                     return implode(', ', $modelsNames);
270 270
                 },
271 271
                 'widgetOptions' => [
Please login to merge, or discard this patch.
action/adapter/viewRenderer/DynaGrid.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -270,7 +270,7 @@
 block discarded – undo
270 270
 //                    '{create}' => ['class' => 'col-xs-8 text-right'],
271 271
                 ],
272 272
                 'bulkActionsItems' => [
273
-                    'General' => ['mass-update' => 'Mass edit',],
273
+                    'General' => ['mass-update' => 'Mass edit', ],
274 274
                 ],
275 275
                 'bulkActionsOptions' => [
276 276
                     'options' => [
Please login to merge, or discard this patch.
widgets/GridView.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
     public function init()
27 27
     {
28 28
         $this->toolbar = $this->getToolbarConfig();
29
-        $this->rowOptions = function ($row) {
29
+        $this->rowOptions = function($row) {
30 30
             return [
31 31
                 'attributes' => Json::encode($row->attributes),
32 32
             ];
Please login to merge, or discard this patch.
widgets/DynaGrid.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
         $this->gridOptions = ArrayHelper::merge([
42 42
             'responsive' => false,
43 43
             'responsiveWrap' => false,
44
-            'rowOptions' => function ($row) {
44
+            'rowOptions' => function($row) {
45 45
                 if (method_exists($row, 'getRowOptions')) {
46 46
                     return $row->getRowOptions();
47 47
                 }
Please login to merge, or discard this patch.