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 ( cb0259...f658ab )
by Christian
08:24
created
src/Crawler/EventListCrawler.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
         }
28 28
 
29 29
         $years = $node->filter('.content-top .secondary-nav-item-link')
30
-            ->each(function (Crawler $node) {
30
+            ->each(function(Crawler $node) {
31 31
                 return (int) trim($node->text());
32 32
             });
33 33
 
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
             return null;
55 55
         }
56 56
 
57
-        return $node->filter('.events-list-item')->each(function (Crawler $node) : array {
57
+        return $node->filter('.events-list-item')->each(function(Crawler $node) : array {
58 58
             $eventNode = $node->filter('.events-list-item-event--title a');
59 59
 
60 60
             $url = $this->parseUrl($eventNode);
Please login to merge, or discard this patch.
src/Crawler/AbstractCrawler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
 
15 15
 abstract class AbstractCrawler
16 16
 {
17
-    public const URL_PREFIX  = 'http://last.fm';
17
+    public const URL_PREFIX = 'http://last.fm';
18 18
 
19 19
     public const NEWLINE = "\n";
20 20
 
Please login to merge, or discard this patch.