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 ( 42361c...1e8b43 )
by Christian
15s
created
src/Crawler/ArtistEventCrawler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
         }
29 29
 
30 30
         $years = $node->filter('.content-top .secondary-nav-item-link')
31
-            ->each(static function (Crawler $node) {
31
+            ->each(static function(Crawler $node) {
32 32
                 return (int) trim($node->text());
33 33
             })
34 34
         ;
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
             return [];
51 51
         }
52 52
 
53
-        return $node->filter('.events-list-item')->each(function (Crawler $node): Event {
53
+        return $node->filter('.events-list-item')->each(function(Crawler $node): Event {
54 54
             return $this->parseEvent($node);
55 55
         });
56 56
     }
Please login to merge, or discard this patch.