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 ( 981090...e30cbf )
by Christian
01:43
created
src/Connection/AbstractConnection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -132,7 +132,7 @@
 block discarded – undo
132 132
      */
133 133
     private function filterNull(array $object): array
134 134
     {
135
-        return array_filter($object, function ($val) {
135
+        return array_filter($object, function($val) {
136 136
             return null !== $val;
137 137
         });
138 138
     }
Please login to merge, or discard this patch.
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/Model/SongInfo.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -140,7 +140,7 @@
 block discarded – undo
140 140
      */
141 141
     public static function fromApi(array $data): self
142 142
     {
143
-        $tags   = [];
143
+        $tags = [];
144 144
 
145 145
         if (isset($data['toptags']['tag'])) {
146 146
             foreach ((array) $data['toptags']['tag'] as $tag) {
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
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
      */
57 57
     public function autocorrect(bool $autocorrect): self
58 58
     {
59
-        $this->query['autocorrect'] =  $autocorrect ? 1 : 0;
59
+        $this->query['autocorrect'] = $autocorrect ? 1 : 0;
60 60
 
61 61
         return $this;
62 62
     }
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
@@ -82,7 +82,7 @@
 block discarded – undo
82 82
      */
83 83
     public function autocorrect(bool $autocorrect): self
84 84
     {
85
-        $this->query['autocorrect'] =  $autocorrect ? 1 : 0;
85
+        $this->query['autocorrect'] = $autocorrect ? 1 : 0;
86 86
 
87 87
         return $this;
88 88
     }
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
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
      */
57 57
     public function autocorrect(bool $autocorrect): self
58 58
     {
59
-        $this->query['autocorrect'] =  $autocorrect ? 1 : 0;
59
+        $this->query['autocorrect'] = $autocorrect ? 1 : 0;
60 60
 
61 61
         return $this;
62 62
     }
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.