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 ( 6a0208...e49e75 )
by Steve
13s
created
src/views/default/index.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
                 $defaults = [];
28 28
                 $startDate = strtotime('-6 days');
29 29
                 foreach (range(-6, 0) as $day) {
30
-                    $defaults[date('D: Y-m-d', strtotime($day . 'days'))] = 0;
30
+                    $defaults[date('D: Y-m-d', strtotime($day.'days'))] = 0;
31 31
                 }
32 32
                 $results = AuditEntry::find()
33 33
                     ->select(["COUNT(DISTINCT id) as count", "created AS day"])
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
                         date('Y-m-d 00:00:00', $startDate),
36 36
                         date('Y-m-d 23:59:59')])
37 37
                     ->groupBy("day")->indexBy('day')->column();
38
-                array_walk($results, function ($count, &$key) {
38
+                array_walk($results, function($count, &$key) {
39 39
                     $key = date('D: Y-m-d', date_create($key));
40 40
                 });
41 41
                 $results = array_merge($defaults, $results);
Please login to merge, or discard this patch.
src/views/default/panels/mail/chart.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
 $defaults = [];
9 9
 $startDate = strtotime('-6 days');
10 10
 foreach (range(-6, 0) as $day) {
11
-    $defaults[date('D: Y-m-d', strtotime($day . 'days'))] = 0;
11
+    $defaults[date('D: Y-m-d', strtotime($day.'days'))] = 0;
12 12
 }
13 13
 $results = AuditMail::find()
14 14
     ->select(["COUNT(DISTINCT id) as count", "created AS day"])
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
         date('Y-m-d 00:00:00', $startDate),
17 17
         date('Y-m-d 23:59:59')])
18 18
     ->groupBy("day")->indexBy('day')->column();
19
-array_walk($results, function ($count, &$key) {
19
+array_walk($results, function($count, &$key) {
20 20
     $key = date('D: Y-m-d', date_create($key));
21 21
 });
22 22
 $results = array_merge($defaults, $results);
Please login to merge, or discard this patch.
src/views/default/panels/javascript/chart.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
 $defaults = [];
9 9
 $startDate = strtotime('-6 days');
10 10
 foreach (range(-6, 0) as $day) {
11
-    $defaults[date('D: Y-m-d', strtotime($day . 'days'))] = 0;
11
+    $defaults[date('D: Y-m-d', strtotime($day.'days'))] = 0;
12 12
 }
13 13
 $results = AuditJavascript::find()
14 14
     ->select(["COUNT(DISTINCT id) as count", "created AS day"])
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
         date('Y-m-d 00:00:00', $startDate),
17 17
         date('Y-m-d 23:59:59')])
18 18
     ->groupBy("day")->indexBy('day')->column();
19
-array_walk($results, function ($count, &$key) {
19
+array_walk($results, function($count, &$key) {
20 20
     $key = date('D: Y-m-d', date_create($key));
21 21
 });
22 22
 $results = array_merge($defaults, $results);
Please login to merge, or discard this patch.
src/views/default/panels/trail/chart.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
 $defaults = [];
9 9
 $startDate = strtotime('-6 days');
10 10
 foreach (range(-6, 0) as $day) {
11
-    $defaults[date('D: Y-m-d', strtotime($day . 'days'))] = 0;
11
+    $defaults[date('D: Y-m-d', strtotime($day.'days'))] = 0;
12 12
 }
13 13
 $results = AuditTrail::find()
14 14
     ->select(["COUNT(DISTINCT id) as count", "created AS day"])
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
         date('Y-m-d 00:00:00', $startDate),
17 17
         date('Y-m-d 23:59:59')])
18 18
     ->groupBy("day")->indexBy('day')->column();
19
-array_walk($results, function ($count, &$key) {
19
+array_walk($results, function($count, &$key) {
20 20
     $key = date('D: Y-m-d', date_create($key));
21 21
 });
22 22
 $results = array_merge($defaults, $results);
Please login to merge, or discard this patch.
src/views/default/panels/error/chart.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
 $defaults = [];
9 9
 $startDate = strtotime('-6 days');
10 10
 foreach (range(-6, 0) as $day) {
11
-    $defaults[date('D: Y-m-d', strtotime($day . 'days'))] = 0;
11
+    $defaults[date('D: Y-m-d', strtotime($day.'days'))] = 0;
12 12
 }
13 13
 $results = AuditError::find()
14 14
     ->select(["COUNT(DISTINCT id) as count", "created AS day"])
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
         date('Y-m-d 00:00:00', $startDate),
17 17
         date('Y-m-d 23:59:59')])
18 18
     ->groupBy("day")->indexBy('day')->column();
19
-array_walk($results, function ($count, &$key) {
19
+array_walk($results, function($count, &$key) {
20 20
     $key = date('D: Y-m-d', date_create($key));
21 21
 });
22 22
 $results = array_merge($defaults, $results);
Please login to merge, or discard this patch.