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 (#837)
by E
07:31 queued 05:03
created
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/Reflection/ReflectionMethodSource/ReflectionMethod.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
     /**
31 31
      * Send a POST request
32 32
      *
33
-     * @param int|string $url the URL of the API endpoint
33
+     * @param integer $url the URL of the API endpoint
34 34
      * @param mixed $data and array or a blob of data to be sent
35 35
      * @param mixed[] $headers add optional headers
36 36
      */
Please login to merge, or discard this patch.