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.
Passed
Push — master ( 82c3a3...e5da89 )
by Brett
09:33
created
src/views/error/view.php 1 patch
Spacing   +4 added lines, -5 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
 $this->title = Yii::t('audit', 'Error #{id}', ['id' => $model->id]);
12 12
 $this->params['breadcrumbs'][] = ['label' => Yii::t('audit', 'Audit'), 'url' => ['default/index']];
13 13
 $this->params['breadcrumbs'][] = ['label' => Yii::t('audit', 'Errors'), 'url' => ['index']];
14
-$this->params['breadcrumbs'][] = '#' . $model->id;
14
+$this->params['breadcrumbs'][] = '#'.$model->id;
15 15
 
16 16
 echo Html::tag('h1', $this->title);
17 17
 
@@ -44,16 +44,15 @@  discard block
 block discarded – undo
44 44
         'line',
45 45
         [
46 46
             'header' => Yii::t('audit', 'Called'),
47
-            'value' => function ($data) {
47
+            'value' => function($data) {
48 48
                 return
49 49
                     isset($data['type']) ?
50
-                        (( isset($data['class']) ? $data['class'] : '[unknown]') . $data['type'] . $data['function']) :
51
-                        $data['function'];
50
+                        ((isset($data['class']) ? $data['class'] : '[unknown]').$data['type'].$data['function']) : $data['function'];
52 51
             }
53 52
         ],
54 53
         [
55 54
             'header' => Yii::t('audit', 'Args'),
56
-            'value' => function ($data) {
55
+            'value' => function($data) {
57 56
                 $out = '<a class="args-toggle glyphicon glyphicon-plus" href="javascript:void(0);"></a>';
58 57
                 $out .= '<pre style="display:none;">';
59 58
                 $out .= !empty($data['args']) ? VarDumper::dumpAsString($data['args']) : '';
Please login to merge, or discard this patch.