GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 452128...a343a6 )
by Brett
04:19
created
src/views/trail/view.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 $this->title = Yii::t('audit', 'Trail #{id}', ['id' => $model->id]);
11 11
 $this->params['breadcrumbs'][] = ['label' => Yii::t('audit', 'Audit'), 'url' => ['default/index']];
12 12
 $this->params['breadcrumbs'][] = ['label' => Yii::t('audit', 'Trails'), 'url' => ['trail/index']];
13
-$this->params['breadcrumbs'][] = '#' . $model->id;
13
+$this->params['breadcrumbs'][] = '#'.$model->id;
14 14
 
15 15
 echo Html::tag('h1', $this->title);
16 16
 
Please login to merge, or discard this patch.
src/views/javascript/index.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
             [
33 33
                 'attribute' => 'entry_id',
34 34
                 'class' => 'yii\grid\DataColumn',
35
-                'value' => function ($data) {
35
+                'value' => function($data) {
36 36
                     return $data->entry_id ? Html::a($data->entry_id, ['entry/view', 'id' => $data->entry_id]) : '';
37 37
                 },
38 38
                 'format' => 'raw',
Please login to merge, or discard this patch.
src/views/javascript/view.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 $this->title = Yii::t('audit', 'Trail #{id}', ['id' => $model->id]);
11 11
 $this->params['breadcrumbs'][] = ['label' => Yii::t('audit', 'Audit'), 'url' => ['default/index']];
12 12
 $this->params['breadcrumbs'][] = ['label' => Yii::t('audit', 'Trails'), 'url' => ['trail/index']];
13
-$this->params['breadcrumbs'][] = '#' . $model->id;
13
+$this->params['breadcrumbs'][] = '#'.$model->id;
14 14
 
15 15
 echo Html::tag('h1', $this->title);
16 16
 
Please login to merge, or discard this patch.
src/views/default/panels/javascript/chart.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 $days = [];
9 9
 $count = [];
10 10
 foreach (range(-6, 0) as $day) {
11
-    $date = strtotime($day . 'days');
11
+    $date = strtotime($day.'days');
12 12
     $days[] = date('D: Y-m-d', $date);
13 13
     $count[] = AuditTrail::find()->where(['between', 'created', date('Y-m-d 00:00:00', $date), date('Y-m-d 23:59:59', $date)])->count();
14 14
 }
Please login to merge, or discard this patch.
src/views/default/panels/mail/chart.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 $days = [];
9 9
 $count = [];
10 10
 foreach (range(-6, 0) as $day) {
11
-    $date = strtotime($day . 'days');
11
+    $date = strtotime($day.'days');
12 12
     $days[] = date('D: Y-m-d', $date);
13 13
     $count[] = AuditTrail::find()->where(['between', 'created', date('Y-m-d 00:00:00', $date), date('Y-m-d 23:59:59', $date)])->count();
14 14
 }
Please login to merge, or discard this patch.
src/views/default/panels/error/chart.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 $days = [];
9 9
 $count = [];
10 10
 foreach (range(-6, 0) as $day) {
11
-    $date = strtotime($day . 'days');
11
+    $date = strtotime($day.'days');
12 12
     $days[] = date('D: Y-m-d', $date);
13 13
     $count[] = AuditTrail::find()->where(['between', 'created', date('Y-m-d 00:00:00', $date), date('Y-m-d 23:59:59', $date)])->count();
14 14
 }
Please login to merge, or discard this patch.
src/views/entry/panels/extra/detail.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
         ],
38 38
         [
39 39
             'header' => Yii::t('audit', 'Data'),
40
-            'value' => function ($data) {
40
+            'value' => function($data) {
41 41
                 $out = '<a class="data-toggle glyphicon glyphicon-plus" href="javascript:void(0);"></a>';
42 42
                 $out .= '<pre style="display:none;">';
43 43
                 $out .= \yii\helpers\VarDumper::dumpAsString($data['data']);
Please login to merge, or discard this patch.
src/views/entry/panels/error/detail.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
             'class'    => 'yii\grid\ActionColumn',
20 20
             'template' => '{view}',
21 21
             'buttons'  => [
22
-                'view' => function ($url, $model) {
22
+                'view' => function($url, $model) {
23 23
                     return Html::a(
24 24
                         Html::tag('span', '', ['class' => 'glyphicon glyphicon-eye-open']), ['mail/view', 'id' => $model->id]
25 25
                     );
Please login to merge, or discard this patch.
src/views/error/index.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
             [
33 33
                 'attribute' => 'entry_id',
34 34
                 'class' => 'yii\grid\DataColumn',
35
-                'value' => function ($data) {
35
+                'value' => function($data) {
36 36
                     return $data->entry_id ? Html::a($data->entry_id, ['entry/view', 'id' => $data->entry_id]) : '';
37 37
                 },
38 38
                 'format' => 'raw',
Please login to merge, or discard this patch.