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 ( c27c09...a845ba )
by Brett
04:59
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/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/components/base/ErrorHandlerTrait.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
- * Error Handler allows errors to be logged to the audit_error table.
4
- */
3
+     * Error Handler allows errors to be logged to the audit_error table.
4
+     */
5 5
 
6 6
 namespace bedezign\yii2\audit\components\base;
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/entry/panels/curl/index.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,5 +6,6 @@
 block discarded – undo
6 6
 
7 7
 echo Html::tag('h1', $panel->name);
8 8
 
9
-foreach ($dataProvider->allModels as $index => $request)
9
+foreach ($dataProvider->allModels as $index => $request) {
10 10
     echo $this->render('detail', ['panel' => $panel, 'request' => $request, 'index' => $index + 1]);
11
+}
Please login to merge, or discard this patch.