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.
Cancelled
Push — master ( 7f9786...657102 )
by Constantin
02:41
created
Gica/CodeAnalysis/MethodListenerDiscovery/MethodListenerMapperWriter.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -36,6 +36,9 @@  discard block
 block discarded – undo
36 36
         return implode("\n\n", $eventEntries);
37 37
     }
38 38
 
39
+    /**
40
+     * @param integer $spacesCount
41
+     */
39 42
     private function spaces($spacesCount)
40 43
     {
41 44
         return str_repeat(' ', $spacesCount);
@@ -57,6 +60,9 @@  discard block
 block discarded – undo
57 60
         }, $listeners);
58 61
     }
59 62
 
63
+    /**
64
+     * @param integer $eventClass
65
+     */
60 66
     private function generateEventItem($eventClass, array $listeners)
61 67
     {
62 68
         return $this->spaces(self::SPACES_AT_MESSAGES) . $this->prependSlash($eventClass) . "::class => [\n" .
Please login to merge, or discard this patch.
src/Gica/CodeAnalysis/MethodListenerDiscovery/ReadModelMapperWriter.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -36,6 +36,9 @@  discard block
 block discarded – undo
36 36
         return implode("\n\n", $eventEntries);
37 37
     }
38 38
 
39
+    /**
40
+     * @param integer $spacesCount
41
+     */
39 42
     private function spaces($spacesCount)
40 43
     {
41 44
         return str_repeat(' ', $spacesCount);
@@ -57,6 +60,9 @@  discard block
 block discarded – undo
57 60
         }, $eventListenerMethods);
58 61
     }
59 62
 
63
+    /**
64
+     * @param integer $listenerClass
65
+     */
60 66
     private function generateReadItem($listenerClass, array $listeners)
61 67
     {
62 68
         return $this->spaces(self::SPACES_AT_MESSAGES) . $this->prependSlash($listenerClass) . "::class => [\n" .
Please login to merge, or discard this patch.
MethodListenerDiscovery/ClassSorter/ByConstructorDependencySorter.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -52,6 +52,9 @@
 block discarded – undo
52 52
     }
53 53
 
54 54
 
55
+    /**
56
+     * @param string[] $classes
57
+     */
55 58
     private function isParentClassOfAny(\ReflectionClass $parentClass, $classes)
56 59
     {
57 60
         $isSubClassOf = function ($class) use ($parentClass) {
Please login to merge, or discard this patch.