Completed
Push — master ( f6fc3d...d77966 )
by Jeff
02:53
created
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.
views/user/index.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
             'last_login_at',
27 27
             [
28 28
                 'attribute' => 'role',
29
-                'value' => function ($model) {
29
+                'value' => function($model) {
30 30
                     return $model->role ? Yii::t('app', $model->role->name) : null;
31 31
                 },
32 32
             ],
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
             ['class' => 'yii\grid\ActionColumn',
35 35
                 'template' => '{view} {set-roles} {delete}',
36 36
                 'buttons' => [
37
-                    'set-roles' => function ($url) {
37
+                    'set-roles' => function($url) {
38 38
                         return Html::a('<span class="glyphicon glyphicon-cog"></span>', $url);
39 39
                     },
40 40
                 ],
Please login to merge, or discard this patch.
views/screen/view.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
                 'controller' => 'flow',
58 58
                 'template' => '{view} {update} {unlink}',
59 59
                 'buttons' => [
60
-                    'unlink' => function ($url, $_model) use ($model) {
60
+                    'unlink' => function($url, $_model) use ($model) {
61 61
                         return Html::a('<span class="glyphicon glyphicon-remove"></span>', Url::to(['unlink', 'id' => $model->id, 'flowId' => $_model->id]));
62 62
                     },
63 63
                 ],
Please login to merge, or discard this patch.
models/types/Agenda.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
 
163 163
         foreach ($agenda['events'] as $day => $events) {
164 164
             // Sort by desc first line
165
-            usort($events, function ($a, $b) {
165
+            usort($events, function($a, $b) {
166 166
                 return strcmp($a['desc'][0], $b['desc'][0]);
167 167
             });
168 168
 
@@ -390,7 +390,7 @@  discard block
 block discarded – undo
390 390
                     'right' => ((1 - ($e['position'] + 1) / $e['overlaps']) * 100).'%',
391 391
                     'background-color' => $this->getColor($e['desc'][0]),
392 392
                 ];
393
-                $styleStr = implode('; ', array_map(function ($k, $v) {
393
+                $styleStr = implode('; ', array_map(function($k, $v) {
394 394
                     return $k.':'.$v;
395 395
                 }, array_keys($style), $style));
396 396
 
Please login to merge, or discard this patch.
views/content-type/index.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
                 'template' => '{toggle}',
25 25
                 'header' => Yii::t('app', 'Enabled'),
26 26
                 'buttons' => [
27
-                    'toggle' => function ($url, $model) {
27
+                    'toggle' => function($url, $model) {
28 28
                         return Html::a('<span class="glyphicon glyphicon-'.($model->enabled ? 'pause' : 'play').'"></span>', $url);
29 29
                     },
30 30
                 ],
Please login to merge, or discard this patch.
views/device/index.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
                 'class' => 'yii\grid\ActionColumn',
24 24
                 'template' => '{view} {update} {delete} {toggle}',
25 25
                 'buttons' => [
26
-                    'toggle' => function ($url, $model) {
26
+                    'toggle' => function($url, $model) {
27 27
                         return Html::a('<span class="glyphicon glyphicon-'.($model->enabled ? 'pause' : 'play').'"></span>', $url);
28 28
                     },
29 29
                 ],
Please login to merge, or discard this patch.
views/screen/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, 'flowId' => $_model->id]));
32 32
                     },
33 33
                 ],
Please login to merge, or discard this patch.
controllers/FrontendController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -174,12 +174,12 @@  discard block
 block discarded – undo
174 174
         $flows = $screen->allFlows();
175 175
 
176 176
         // Get all flow ids
177
-        $flowIds = array_map(function ($e) {
177
+        $flowIds = array_map(function($e) {
178 178
             return $e->id;
179 179
         }, $flows);
180 180
 
181 181
         // Get all content type ids
182
-        $contentTypes = array_map(function ($e) {
182
+        $contentTypes = array_map(function($e) {
183 183
             return $e->id;
184 184
         }, $field->contentTypes);
185 185
 
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
             ->orderBy('duration ASC')
195 195
             ->all();
196 196
 
197
-        $next = array_map(function ($c) use ($field) {
197
+        $next = array_map(function($c) use ($field) {
198 198
             return [
199 199
                 'id' => $c->id,
200 200
                 'data' => $field->mergeData($c->getData()),
Please login to merge, or discard this patch.
views/flow/view.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
             [
53 53
                 'label' => Yii::t('app', 'Preview'),
54 54
                 'format' => 'raw',
55
-                'content' => function ($model) {
55
+                'content' => function($model) {
56 56
                     return Html::a(Yii::t('app', 'Preview'), ['content/preview', 'id' => $model->id], ['class' => 'btn btn-primary']);
57 57
                 },
58 58
             ],
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
                 'controller' => 'content',
62 62
                 'template' => '{view} {update} {delete} {toggle}',
63 63
                 'buttons' => [
64
-                    'toggle' => function ($url, $model) {
64
+                    'toggle' => function($url, $model) {
65 65
                         return Html::a('<span class="glyphicon glyphicon-'.($model->enabled ? 'pause' : 'play').'"></span>', $url);
66 66
                     },
67 67
                 ],
Please login to merge, or discard this patch.