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 ( aea427...e2243d )
by
unknown
09:11
created
src/Entity/ArticleComment.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
     public function getUsername(): ?string
35 35
     {
36 36
         $author = $this->getAuthor();
37
-        if($author) {
37
+        if ($author) {
38 38
             return $author->getUsername();
39 39
         }
40 40
 
Please login to merge, or discard this patch.
src/Fixture/BlogFixture.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@
 block discarded – undo
97 97
 
98 98
         /** @var ChannelInterface $channel */
99 99
         foreach ($channels as $channel) {
100
-            for ($i=1; $i <= $options['articles_per_channel']; $i++) {
100
+            for ($i = 1; $i <= $options['articles_per_channel']; $i++) {
101 101
                 /** @var ArticleInterface $article */
102 102
                 $article = $this->articleFactory->createNew();
103 103
 
Please login to merge, or discard this patch.