Completed
Push — master ( 9043b2...1a4f46 )
by Jeff
12:21
created
controllers/ScreenTemplateController.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -223,7 +223,7 @@
 block discarded – undo
223 223
             if (!is_array($newTypeIds)) {
224 224
                 $newTypeIds = [];
225 225
             }
226
-            $oldTypeIds = array_map(function ($c) {
226
+            $oldTypeIds = array_map(function($c) {
227 227
                 return $c->id;
228 228
             }, $field->contentTypes);
229 229
 
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -327,7 +327,7 @@
 block discarded – undo
327 327
      * @param float $min
328 328
      * @param float $max
329 329
      *
330
-     * @return float random float
330
+     * @return integer random float
331 331
      */
332 332
     public static function randf($min = 0.0, $max = 1.0)
333 333
     {
Please login to merge, or discard this patch.
controllers/ScreenController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
             return $this->redirect(['view', 'id' => $model->id]);
99 99
         } else {
100 100
             $templates = ScreenTemplate::find()->all();
101
-            $templatesArray = array_reduce($templates, function ($a, $t) {
101
+            $templatesArray = array_reduce($templates, function($a, $t) {
102 102
                 $a[$t->id] = $t->name;
103 103
 
104 104
                 return $a;
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
             return $this->redirect(['view', 'id' => $model->id]);
128 128
         } else {
129 129
             $templates = ScreenTemplate::find()->all();
130
-            $templatesArray = array_reduce($templates, function ($a, $t) {
130
+            $templatesArray = array_reduce($templates, function($a, $t) {
131 131
                 $a[$t->id] = $t->name;
132 132
 
133 133
                 return $a;
Please login to merge, or discard this patch.
views/user/view.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
             ],
37 37
             [
38 38
                 'attribute' => 'flows',
39
-                'value' => count($model->flows) ? implode(', ', array_map(function ($f) {
39
+                'value' => count($model->flows) ? implode(', ', array_map(function($f) {
40 40
                     return $f->name;
41 41
                 }, $model->flows)) : null,
42 42
                 'visible' => $model->needsFlow,
Please login to merge, or discard this patch.
views/screen-template/_form.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     <?= $form->field($model, 'name')->textInput(['maxlength' => true]) ?>
21 21
 
22 22
     <?php
23
-        $bgs = array_map(function ($bg) {
23
+        $bgs = array_map(function($bg) {
24 24
             return '<img src="'.$bg['uri'].'" alt="'.$bg['name'].'" class="img-preview"/><br />'.$bg['name'];
25 25
         }, $backgrounds);
26 26
     ?>
Please login to merge, or discard this patch.
models/User.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -261,7 +261,7 @@
 block discarded – undo
261 261
             return true;
262 262
         }
263 263
 
264
-        $prevFlows = array_map(function ($f) {
264
+        $prevFlows = array_map(function($f) {
265 265
             return $f->id;
266 266
         }, $this->flows);
267 267
 
Please login to merge, or discard this patch.
controllers/UserController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
                 'only' => ['index', 'view', 'create', 'import', 'delete', 'set-roles'],
36 36
                 'rules' => [
37 37
                     ['allow' => true, 'actions' => ['index', 'view', 'create', 'delete', 'set-roles'], 'roles' => ['admin']],
38
-                    ['allow' => true, 'actions' => ['import'], 'matchCallback' => function () {
38
+                    ['allow' => true, 'actions' => ['import'], 'matchCallback' => function() {
39 39
                         return Yii::$app->params['useLdap'];
40 40
                     }],
41 41
                 ],
Please login to merge, or discard this patch.
messages/config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 return [
4 4
     // string, required, root directory of all source files
5
-    'sourcePath' => __DIR__ . DIRECTORY_SEPARATOR . '..',
5
+    'sourcePath' => __DIR__.DIRECTORY_SEPARATOR.'..',
6 6
     // array, required, list of language codes that the extracted messages
7 7
     // should be translated to. For example, ['zh-CN', 'de'].
8 8
     'languages' => ['fr-FR'],
Please login to merge, or discard this patch.
views/device/link.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
                 'template' => '{link}',
28 28
                 'header' => Yii::t('app', 'Link'),
29 29
                 'buttons' => [
30
-                    'link' => function ($url, $_model) use ($model) {
30
+                    'link' => function($url, $_model) use ($model) {
31 31
                         return Html::a('<span class="glyphicon glyphicon-plus"></span>', Url::to(['link', 'id' => $model->id, 'screenId' => $_model->id]));
32 32
                     },
33 33
                 ],
Please login to merge, or discard this patch.
views/device/view.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
                 'controller' => 'screen',
55 55
                 'template' => '{view} {update} {unlink}',
56 56
                 'buttons' => [
57
-                    'unlink' => function ($url, $_model) use ($model) {
57
+                    'unlink' => function($url, $_model) use ($model) {
58 58
                         return Html::a('<span class="glyphicon glyphicon-remove"></span>', Url::to(['unlink', 'id' => $model->id, 'screenId' => $_model->id]));
59 59
                     },
60 60
                 ],
Please login to merge, or discard this patch.