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.
Passed
Push — master ( 169595...d6b7d8 )
by
unknown
07:55
created
src/SitemapProvider/VendorUrlProvider.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -57,10 +57,10 @@  discard block
 block discarded – undo
57 57
 
58 58
     public function generate(): iterable
59 59
     {
60
-        $urls = [];
60
+        $urls = [ ];
61 61
 
62 62
         foreach ($this->getVendors() as $vendor) {
63
-            $urls[] = $this->createVendorUrl($vendor);
63
+            $urls[ ] = $this->createVendorUrl($vendor);
64 64
         }
65 65
 
66 66
         return $urls;
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
 
69 69
     private function getTranslations(VendorInterface $vendor): Collection
70 70
     {
71
-        return $vendor->getTranslations()->filter(function (TranslationInterface $translation) {
71
+        return $vendor->getTranslations()->filter(function(TranslationInterface $translation) {
72 72
             return $this->localeInLocaleCodes($translation);
73 73
         });
74 74
     }
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
         /** @var ChannelInterface $channel */
92 92
         $channel = $this->channelContext->getChannel();
93 93
 
94
-        return $channel->getLocales()->map(function (LocaleInterface $locale) {
94
+        return $channel->getLocales()->map(function(LocaleInterface $locale) {
95 95
             return $locale->getCode();
96 96
         })->toArray();
97 97
     }
Please login to merge, or discard this patch.