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 ( ad6b6e...c90809 )
by Christian
02:44 queued 01:19
created
src/Service/ArtistService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
      * @throws ApiException
43 43
      * @throws NotFoundException
44 44
      */
45
-    public function search(?string $name = null, ?string $tmbid = null, ?string $mbid = null, int $page = 1): array
45
+    public function search(? string $name = null, ? string $tmbid = null, ? string $mbid = null, int $page = 1) : array
46 46
     {
47 47
         return $this->call('search/artists', array(
48 48
             'mbid'       => $mbid,
Please login to merge, or discard this patch.
src/Service/AbstractService.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
      * @return string|null
62 62
      */
63
-    private function toDateString(\DateTime $date = null): ?string
63
+    private function toDateString(\DateTime $date = null): ? string
64 64
     {
65 65
         if (null === $date) {
66 66
             return null;
Please login to merge, or discard this patch.