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 ( 909c28...c70e88 )
by Christian
01:25
created
src/Crawler/EventInfoCrawler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
     {
61 61
         $artistNode = $node->filter('.grid-items');
62 62
 
63
-        return $artistNode->filter('.grid-items-item')->each(function (Crawler $node): Artist {
63
+        return $artistNode->filter('.grid-items-item')->each(function(Crawler $node): Artist {
64 64
             $image = $this->parseImage($node->filter('.grid-items-cover-image-image img'));
65 65
 
66 66
             return new Artist(
Please login to merge, or discard this patch.
src/Crawler/EventListCrawler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
         }
32 32
 
33 33
         $years = $node->filter('.content-top .secondary-nav-item-link')
34
-            ->each(function (Crawler $node) {
34
+            ->each(function(Crawler $node) {
35 35
                 return (int) trim($node->text());
36 36
             })
37 37
         ;
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
             return null;
62 62
         }
63 63
 
64
-        return $node->filter('.events-list-item')->each(function (Crawler $node): Event {
64
+        return $node->filter('.events-list-item')->each(function(Crawler $node): Event {
65 65
             $eventNode = $node->filter('.events-list-item-event--title a');
66 66
 
67 67
             $url = $this->parseUrl($eventNode);
Please login to merge, or discard this patch.
src/Builder/ArtistTagsBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
      */
69 69
     public function autocorrect(bool $autocorrect): self
70 70
     {
71
-        $this->query['autocorrect'] =  $autocorrect ? 1 : 0;
71
+        $this->query['autocorrect'] = $autocorrect ? 1 : 0;
72 72
 
73 73
         return $this;
74 74
     }
Please login to merge, or discard this patch.
src/Builder/ArtistTopAlbumsBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
      */
69 69
     public function autocorrect(bool $autocorrect): self
70 70
     {
71
-        $this->query['autocorrect'] =  $autocorrect ? 1 : 0;
71
+        $this->query['autocorrect'] = $autocorrect ? 1 : 0;
72 72
 
73 73
         return $this;
74 74
     }
Please login to merge, or discard this patch.
src/Builder/AlbumInfoBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
      */
69 69
     public function autocorrect(bool $autocorrect): self
70 70
     {
71
-        $this->query['autocorrect'] =  $autocorrect ? 1 : 0;
71
+        $this->query['autocorrect'] = $autocorrect ? 1 : 0;
72 72
 
73 73
         return $this;
74 74
     }
Please login to merge, or discard this patch.
src/Builder/SimilarArtistBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
      */
69 69
     public function autocorrect(bool $autocorrect): self
70 70
     {
71
-        $this->query['autocorrect'] =  $autocorrect ? 1 : 0;
71
+        $this->query['autocorrect'] = $autocorrect ? 1 : 0;
72 72
 
73 73
         return $this;
74 74
     }
Please login to merge, or discard this patch.
src/Builder/TrackInfoBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
      */
69 69
     public function autocorrect(bool $autocorrect): self
70 70
     {
71
-        $this->query['autocorrect'] =  $autocorrect ? 1 : 0;
71
+        $this->query['autocorrect'] = $autocorrect ? 1 : 0;
72 72
 
73 73
         return $this;
74 74
     }
Please login to merge, or discard this patch.
src/Builder/AlbumTagsBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
      */
69 69
     public function autocorrect(bool $autocorrect): self
70 70
     {
71
-        $this->query['autocorrect'] =  $autocorrect ? 1 : 0;
71
+        $this->query['autocorrect'] = $autocorrect ? 1 : 0;
72 72
 
73 73
         return $this;
74 74
     }
Please login to merge, or discard this patch.
src/Builder/ArtistTopTagsBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
      */
69 69
     public function autocorrect(bool $autocorrect): self
70 70
     {
71
-        $this->query['autocorrect'] =  $autocorrect ? 1 : 0;
71
+        $this->query['autocorrect'] = $autocorrect ? 1 : 0;
72 72
 
73 73
         return $this;
74 74
     }
Please login to merge, or discard this patch.