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
Pull Request — master (#6)
by Christian
04:03 queued 02:02
created
src/Service/AuthService.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
      *
24 24
      * @param string $token
25 25
      *
26
-     * @return SessionInterface|null
26
+     * @return Session|null
27 27
      *
28 28
      * @throws ApiException
29 29
      * @throws NotFoundException
Please login to merge, or discard this patch.
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 !is_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
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
     {
50 50
         $bandNode = $node->filter('.grid-items');
51 51
 
52
-        return $bandNode->filter('.grid-items-item')->each(function (Crawler $node, $i): array {
52
+        return $bandNode->filter('.grid-items-item')->each(function(Crawler $node, $i): array {
53 53
             return array(
54 54
                 'image' => $this->parseImage($node->filter('.grid-items-cover-image-image img')),
55 55
                 'name'  => $this->parseString($node->filter('.grid-items-item-main-text')),
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
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
         $node = $this->crawlEventList($username);
26 26
 
27 27
         $years = $node->filter('.content-top .secondary-nav-item-link')
28
-            ->each(function (Crawler $node, $i) {
28
+            ->each(function(Crawler $node, $i) {
29 29
                 return (int) trim($node->text());
30 30
             });
31 31
 
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
     {
49 49
         $node = $this->crawlEventList($username, $year, $page);
50 50
 
51
-        return $node->filter('.events-list-item')->each(function (Crawler $node, $i): array {
51
+        return $node->filter('.events-list-item')->each(function(Crawler $node, $i): array {
52 52
             $eventNode = $node->filter('.events-list-item-event--title a');
53 53
 
54 54
             $id = preg_replace('/.*\/(\d+)+.*/', '$1', $this->parseUrl($eventNode));
Please login to merge, or discard this patch.