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 ( 547017...c67bb4 )
by Christian
04:20
created
src/Service/LibraryService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * (c) Christian Gripp <[email protected]>
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
             return [];
43 43
         }
44 44
 
45
-        return array_map(function ($data) {
45
+        return array_map(function($data) {
46 46
             return ArtistInfo::fromApi($data);
47 47
         }, $response['artists']['artist']);
48 48
     }
Please login to merge, or discard this patch.
src/Service/ChartService.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * (c) Christian Gripp <[email protected]>
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
             return [];
42 42
         }
43 43
 
44
-        return array_map(function ($data) {
44
+        return array_map(function($data) {
45 45
             return ArtistInfo::fromApi($data);
46 46
         }, $response['artists']['artist']);
47 47
     }
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
             return [];
69 69
         }
70 70
 
71
-        return array_map(function ($data) {
71
+        return array_map(function($data) {
72 72
             return Tag::fromApi($data);
73 73
         }, $response['tags']['tag']);
74 74
     }
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
             return [];
96 96
         }
97 97
 
98
-        return array_map(function ($data) {
98
+        return array_map(function($data) {
99 99
             return Song::fromApi($data);
100 100
         }, $response['tracks']['track']);
101 101
     }
Please login to merge, or discard this patch.
src/Service/AlbumService.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * (c) Christian Gripp <[email protected]>
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
             return [];
128 128
         }
129 129
 
130
-        return array_map(function ($data) {
130
+        return array_map(function($data) {
131 131
             return Tag::fromApi($data);
132 132
         }, $response['tags']['tag']);
133 133
     }
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
             return [];
157 157
         }
158 158
 
159
-        return array_map(function ($data) {
159
+        return array_map(function($data) {
160 160
             return Tag::fromApi($data);
161 161
         }, $response['tags']['tag']);
162 162
     }
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
             return [];
186 186
         }
187 187
 
188
-        return array_map(function ($data) {
188
+        return array_map(function($data) {
189 189
             return Tag::fromApi($data);
190 190
         }, $response['toptags']['tag']);
191 191
     }
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
             return [];
213 213
         }
214 214
 
215
-        return array_map(function ($data) {
215
+        return array_map(function($data) {
216 216
             return AlbumInfo::fromApi($data);
217 217
         }, $response['toptags']['tag']);
218 218
     }
@@ -261,7 +261,7 @@  discard block
 block discarded – undo
261 261
             return [];
262 262
         }
263 263
 
264
-        return array_map(function ($data) {
264
+        return array_map(function($data) {
265 265
             return Album::fromApi($data);
266 266
         }, $response['results']['albummatches']['album']);
267 267
     }
Please login to merge, or discard this patch.
src/Crawler/EventInfoCrawler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * (c) Christian Gripp <[email protected]>
@@ -60,7 +60,7 @@  discard block
 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   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * (c) Christian Gripp <[email protected]>
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
         }
31 31
 
32 32
         $years = $node->filter('.content-top .secondary-nav-item-link')
33
-            ->each(function (Crawler $node) {
33
+            ->each(function(Crawler $node) {
34 34
                 return (int) trim($node->text());
35 35
             });
36 36
 
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
             return null;
58 58
         }
59 59
 
60
-        return $node->filter('.events-list-item')->each(function (Crawler $node): Event {
60
+        return $node->filter('.events-list-item')->each(function(Crawler $node): Event {
61 61
             $eventNode = $node->filter('.events-list-item-event--title a');
62 62
 
63 63
             $url = $this->parseUrl($eventNode);
Please login to merge, or discard this patch.