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 ( d2ff93...4b56a1 )
by Constantin
02:26
created
src/Gica/CodeAnalysis/AggregateEventHandlersValidator.php 1 patch
Doc Comments   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
 
40 40
     /**
41 41
      * @param string $filePath
42
-     * @return bool
42
+     * @return integer
43 43
      */
44 44
     protected function isListenerFileName($filePath)
45 45
     {
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
     }
89 89
 
90 90
     /**
91
-     * @param $className
91
+     * @param string $className
92 92
      * @throws \Exception
93 93
      */
94 94
     private function validateEventHandlersInClass($className)
@@ -143,6 +143,9 @@  discard block
 block discarded – undo
143 143
         return 0 === stripos($reflectionMethod->getName(), 'apply');
144 144
     }
145 145
 
146
+    /**
147
+     * @param string $content
148
+     */
146 149
     private function evaluateCode($content)
147 150
     {
148 151
         $content = str_replace('<?php', '', $content);
Please login to merge, or discard this patch.
src/Gica/CodeAnalysis/MethodListenerDiscovery.php 1 patch
Doc Comments   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
 
72 72
     /**
73 73
      * @param string $filePath
74
-     * @return bool
74
+     * @return integer
75 75
      */
76 76
     protected function isListenerFileName($filePath)
77 77
     {
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
     }
154 154
 
155 155
     /**
156
-     * @param $className
156
+     * @param string $className
157 157
      * @return ListenerMethod[]
158 158
      */
159 159
     private function findListenerMethodsInClass($className)
@@ -214,6 +214,9 @@  discard block
 block discarded – undo
214 214
         return $this->messageClassDetector->isMessageClass($typeHintedClass);
215 215
     }
216 216
 
217
+    /**
218
+     * @param string $content
219
+     */
217 220
     private function evaluateCode($content)
218 221
     {
219 222
         $content = str_replace('<?php', '', $content);
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 searchClass(\ReflectionClass $a, $classes)
56 59
     {
57 60
         foreach ($classes as $class) {
Please login to merge, or discard this patch.
src/Gica/CodeAnalysis/MethodListenerDiscovery/ListenerMethod.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -17,6 +17,9 @@
 block discarded – undo
17 17
      */
18 18
     private $class;
19 19
 
20
+    /**
21
+     * @param string $methodName
22
+     */
20 23
     public function __construct(
21 24
         \ReflectionClass
22 25
         $class, $methodName, $eventClassName
Please login to merge, or discard this patch.
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.