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 ( 1db939...f19805 )
by Steve
05:44
created
src/Audit.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -240,6 +240,9 @@
 block discarded – undo
240 240
         $this->panels = $this->loadPanels(array_keys($this->panels));
241 241
     }
242 242
 
243
+    /**
244
+     * @param ActionEvent $event
245
+     */
243 246
     public function shouldTrack($event, $isError = false)
244 247
     {
245 248
         $trackActions = $isError ? $this->trackErrorActions : $this->trackActions;
Please login to merge, or discard this patch.
src/views/mail/view-html.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
 $this->title                   = Yii::t('audit', 'Mail #{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', 'Mails'), 'url' => ['index']];
14
-$this->params['breadcrumbs'][] = '#' . $model->id;
14
+$this->params['breadcrumbs'][] = '#'.$model->id;
15 15
 
16 16
 if (Audit::getInstance()->hasMethod('renderEmail')) {
17 17
     Audit::getInstance()->renderEmail($this, $model);
@@ -21,5 +21,5 @@  discard block
 block discarded – undo
21 21
     $parser->setText($model->data);
22 22
     echo $parser->getMessageBody('htmlEmbedded');
23 23
 } else {
24
-    echo Html::tag('pre', $model->data) . Html::tag('br') . 'Please register a renderEmail panel function or install php-mime-mail-parser for better functionality';
24
+    echo Html::tag('pre', $model->data).Html::tag('br').'Please register a renderEmail panel function or install php-mime-mail-parser for better functionality';
25 25
 }
Please login to merge, or discard this patch.
src/views/entry/panels/soap/detail.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
     unset($request['result']);
39 39
 }
40 40
 
41
-$tabs[] = [ 'label' => \Yii::t('audit', 'Info'), 'content' => $this->render('info_table', ['request' => $request]), 'active' => true ];
41
+$tabs[] = ['label' => \Yii::t('audit', 'Info'), 'content' => $this->render('info_table', ['request' => $request]), 'active' => true];
42 42
 
43 43
 echo Html::tag('h2', \Yii::t('audit', 'Request #{id}', ['id' => $index])),
44 44
         WebHelper::bootstrap('Tabs', 'widget', ['items' => array_reverse($tabs)]);
Please login to merge, or discard this patch.