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 ( 871d34...713d9f )
by Steve
04:40
created
src/panels/MailPanel.php 1 patch
Unused Use Statements   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -2,15 +2,15 @@
 block discarded – undo
2 2
 
3 3
 namespace bedezign\yii2\audit\panels;
4 4
 
5
+use Swift_Message;
6
+use Swift_Mime_Attachment;
7
+use Swift_Mime_MimePart;
8
+use Yii;
5 9
 use bedezign\yii2\audit\Audit;
6 10
 use bedezign\yii2\audit\components\panels\Panel;
7 11
 use bedezign\yii2\audit\components\panels\RendersSummaryChartTrait;
8 12
 use bedezign\yii2\audit\models\AuditMail;
9 13
 use bedezign\yii2\audit\models\AuditMailSearch;
10
-use Swift_Message;
11
-use Swift_Mime_Attachment;
12
-use Swift_Mime_MimePart;
13
-use Yii;
14 14
 use yii\base\Event;
15 15
 use yii\grid\GridViewAsset;
16 16
 use yii\mail\BaseMailer;
Please login to merge, or discard this patch.
src/components/panels/RendersSummaryChartTrait.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
         $defaults = [];
38 38
         $startDate = strtotime('-6 days');
39 39
         foreach (range(-6, 0) as $day) {
40
-            $defaults[date('D: Y-m-d', strtotime($day . 'days'))] = 0;
40
+            $defaults[date('D: Y-m-d', strtotime($day.'days'))] = 0;
41 41
         }
42 42
 
43 43
         $panelModel = $this->getChartModel();
Please login to merge, or discard this patch.