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 ( b1f0c4...68e573 )
by Brett
04:45
created
src/views/trail/index.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
             [
28 28
                 'attribute' => 'entry_id',
29 29
                 'class' => 'yii\grid\DataColumn',
30
-                'value' => function ($data) {
30
+                'value' => function($data) {
31 31
                     return $data->entry_id ? Html::a($data->entry_id, ['entry/view', 'id' => $data->entry_id]) : '';
32 32
                 },
33 33
                 'format' => 'raw',
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
                 'attribute' => 'user_id',
37 37
                 'label' => Yii::t('audit', 'User ID'),
38 38
                 'class' => 'yii\grid\DataColumn',
39
-                'value' => function ($data) {
39
+                'value' => function($data) {
40 40
                     return Audit::getInstance()->getUserIdentifier($data->user_id);
41 41
                 },
42 42
                 'format' => 'raw',
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
             'field',
51 51
             [
52 52
                 'label' => Yii::t('audit', 'Diff'),
53
-                'value' => function ($model) {
53
+                'value' => function($model) {
54 54
                     return $model->getDiffHtml();
55 55
                 },
56 56
                 'format' => 'raw',
Please login to merge, or discard this patch.
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/web/JSLoggingAsset.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * AssetBundle to register when you want to log javascript events as well.
4
- */
3
+     * AssetBundle to register when you want to log javascript events as well.
4
+     */
5 5
 
6 6
 namespace bedezign\yii2\audit\web;
7 7
 
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/mail/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.