Completed
Push — master ( b00ae8...c37779 )
by Jeff
06:25 queued 13s
created
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, $key) use ($model) {
30
+                    'link' => function($url, $_model, $key) 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, $key) use ($model) {
57
+                    'unlink' => function($url, $_model, $key) 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/flow/view.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
                 'controller' => 'content',
66 66
                 'template' => '{view} {update} {delete} {toggle}',
67 67
                 'buttons' => [
68
-                    'toggle' => function ($url, $model, $key) {
68
+                    'toggle' => function($url, $model, $key) {
69 69
                         return Html::a('<span class="glyphicon glyphicon-'.($model->enabled ? 'pause' : 'play').'"></span>', $url);
70 70
                     },
71 71
                 ],
Please login to merge, or discard this patch.
config/params.example.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
         'calendarTimezone' => 'UTC',
30 30
         'displayTeachers' => false,
31 31
     ],
32
-    'weather' => [ // https://darksky.net/dev
32
+    'weather' => [// https://darksky.net/dev
33 33
         'language' => 'en',
34 34
         'units' => 'us',
35 35
         'apikey' => '',
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
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
                 'controller' => 'content',
66 66
                 'template' => '{view} {update} {delete} {toggle}',
67 67
                 'buttons' => [
68
-                    'toggle' => function ($url, $model, $key) {
68
+                    'toggle' => function($url, $model, $key) {
69 69
                         return Html::a('<span class="glyphicon glyphicon-'.($model->enabled ? 'pause' : 'play').'"></span>', $url);
70 70
                     },
71 71
                 ],
Please login to merge, or discard this patch.
views/content/index.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
                 'controller' => 'content',
66 66
                 'template' => '{view} {update} {delete} {toggle}',
67 67
                 'buttons' => [
68
-                    'toggle' => function ($url, $model, $key) {
68
+                    'toggle' => function($url, $model, $key) {
69 69
                         return Html::a('<span class="glyphicon glyphicon-'.($model->enabled ? 'pause' : 'play').'"></span>', $url);
70 70
                     },
71 71
                 ],
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, $key) use ($model) {
30
+                    'link' => function($url, $_model, $key) 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/screen/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, $key) use ($model) {
57
+                    'unlink' => function($url, $_model, $key) 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.