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 — 4.2-to-master ( ed215f )
by E
06:47
created
src/Generator/Resolvers/ElementResolver.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@
 block discarded – undo
87 87
 
88 88
     /**
89 89
      * @param string $definition
90
-     * @param object|string $reflectionElement
90
+     * @param \ApiGen\Parser\Reflection\TokenReflection\ReflectionInterface $reflectionElement
91 91
      * @param string|null $expectedName
92 92
      * @return ClassReflectionInterface|ConstantReflectionInterface|FunctionReflectionInterface|MethodReflectionInterface|PropertyReflectionInterface|null
93 93
      */
Please login to merge, or discard this patch.
src/Generator/TemplateGenerators/SourceCodeGenerator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@
 block discarded – undo
94 94
     }
95 95
 
96 96
     /**
97
-     * @param ElementReflectionInterface|AbstractReflection $element
97
+     * @param ElementReflectionInterface $element
98 98
      */
99 99
     private function generateForElement(ElementReflectionInterface $element): void
100 100
     {
Please login to merge, or discard this patch.
src/Parser/Elements/ElementSorter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@
 block discarded – undo
101 101
     }
102 102
 
103 103
     /**
104
-     * @param InClassInterface|ReflectionInterface $reflection
104
+     * @param ReflectionInterface $reflection
105 105
      */
106 106
     private function getPropertyOrMethodFqnName(ReflectionInterface $reflection): string
107 107
     {
Please login to merge, or discard this patch.
src/Parser/Reflection/ReflectionClass.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -598,7 +598,7 @@
 block discarded – undo
598 598
     }
599 599
 
600 600
     /**
601
-     * @param mixed[] $usedMethods
601
+     * @param MethodReflectionInterface[] $usedMethods
602 602
      * @return mixed[]
603 603
      */
604 604
     private function sortUsedMethods(array $usedMethods): array
Please login to merge, or discard this patch.
src/Parser/Reflection/TokenReflection/ReflectionFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
 
52 52
     /**
53 53
      * @param IReflectionClass|IReflectionConstant|IReflectionMethod $reflection
54
-     * @return mixed
54
+     * @return AbstractReflection
55 55
      */
56 56
     private function createByReflectionType($reflection)
57 57
     {
Please login to merge, or discard this patch.
src/Templating/Filters/UrlFilters.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -211,7 +211,7 @@
 block discarded – undo
211 211
     }
212 212
 
213 213
     /**
214
-     * @param mixed $value
214
+     * @param string $value
215 215
      * @param ElementReflectionInterface $elementReflection
216 216
      */
217 217
     private function getDescriptionFromValue($value, ElementReflectionInterface $elementReflection): string
Please login to merge, or discard this patch.
src/Utils/Finder/NetteFinder.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 final class NetteFinder implements FinderInterface
9 9
 {
10 10
     /**
11
-     * @param string|string[] $source
11
+     * @param string $source
12 12
      * @param string[] $exclude
13 13
      * @param string[] $extensions
14 14
      * @return SplFileInfo[]
Please login to merge, or discard this patch.
tests/Console/Command/GenerateCommandPrepareOptionsTest.php 2 patches
Doc Comments   +1 added lines, -6 removed lines patch added patch discarded remove patch
@@ -202,9 +202,4 @@
 block discarded – undo
202 202
         $this->assertSame([
203 203
             'config' => '...',
204 204
             'debug' => true
205
-        ], $options);
206
-
207
-        unlink(getcwd() . DIRECTORY_SEPARATOR . 'apigen.neon.dist');
208
->>>>>>> 4.2
209
-    }
210
-}
205
+        ], $options
211 206
\ No newline at end of file
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -6 removed lines patch added patch discarded remove patch
@@ -202,9 +202,4 @@
 block discarded – undo
202 202
         $this->assertSame([
203 203
             'config' => '...',
204 204
             'debug' => true
205
-        ], $options);
206
-
207
-        unlink(getcwd() . DIRECTORY_SEPARATOR . 'apigen.neon.dist');
208
->>>>>>> 4.2
209
-    }
210
-}
205
+        ], $options
211 206
\ No newline at end of file
Please login to merge, or discard this patch.
tests/Parser/Elements/AutocompleteElementsTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
     }
39 39
 
40 40
     /**
41
-     * @return PHPUnit_Framework_MockObject_MockObject|ElementStorageInterface
41
+     * @return ElementStorageInterface
42 42
      */
43 43
     private function createElementStorageMock()
44 44
     {
Please login to merge, or discard this patch.