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 (#741)
by Виктор
19:34
created
src/Console/Formatter/OutputFormatter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 
23 23
 
24 24
     /**
25
-     * @return array|OutputFormatterStyle[]
25
+     * @return \Symfony\Component\Console\Formatter\OutputFormatterStyleInterface[]
26 26
      */
27 27
     private function getStyles()
28 28
     {
Please login to merge, or discard this patch.
src/Contracts/Console/Helper/ProgressBarInterface.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,12 +14,13 @@
 block discarded – undo
14 14
 
15 15
     /**
16 16
      * @param int $maximum
17
+     * @return void
17 18
      */
18 19
     public function init($maximum = 1);
19 20
 
20 21
 
21 22
     /**
22
-     * @param int $increment
23
+     * @return void
23 24
      */
24 25
     public function increment($steps = 1);
25 26
 }
Please login to merge, or discard this patch.
src/Generator/Resolvers/ElementResolver.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
 
162 162
 
163 163
     /**
164
-     * @param ClassReflectionInterface|ParameterReflectionInterface|FunctionReflectionInterface $reflectionElement
164
+     * @param string $reflectionElement
165 165
      * @return ClassReflectionInterface|FunctionReflectionInterface
166 166
      */
167 167
     private function correctContextForParameterOrClassMember($reflectionElement)
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
      * @param string $definition
185 185
      * @param int $pos
186 186
      * @param ElementReflectionInterface $reflectionElement
187
-     * @return ClassReflectionInterface
187
+     * @return ReflectionClass|null
188 188
      */
189 189
     private function resolveContextForSelfProperty($definition, $pos, ElementReflectionInterface $reflectionElement)
190 190
     {
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
     /**
219 219
      * @param string $definition
220 220
      * @param ElementReflectionInterface $reflectionElement
221
-     * @return ClassReflectionInterface|ConstantReflectionInterface|FunctionReflectionInterface|NULL
221
+     * @return ReflectionClass|null
222 222
      */
223 223
     private function resolveIfParsed($definition, ElementReflectionInterface $reflectionElement)
224 224
     {
@@ -320,7 +320,7 @@  discard block
 block discarded – undo
320 320
 
321 321
 
322 322
     /**
323
-     * @param array|ArrayObject $elements
323
+     * @param ArrayObject $elements
324 324
      * @param string $name
325 325
      * @param string $namespace
326 326
      * @return ReflectionClass|NULL
Please login to merge, or discard this patch.
src/Parser/Elements/ElementSorter.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 use ApiGen\Contracts\Parser\Reflection\ConstantReflectionInterface;
15 15
 use ApiGen\Contracts\Parser\Reflection\FunctionReflectionInterface;
16 16
 use ApiGen\Contracts\Parser\Reflection\MethodReflectionInterface;
17
-use ApiGen\Contracts\Parser\Reflection\PropertyReflectionInterface;
18 17
 
19 18
 class ElementSorter implements ElementSorterInterface
20 19
 {
Please login to merge, or discard this patch.
src/Parser/Elements/ElementStorage.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -336,7 +336,7 @@
 block discarded – undo
336 336
 
337 337
 
338 338
     /**
339
-     * @return array
339
+     * @return ElementReflectionInterface[]
340 340
      */
341 341
     private function getSubElements(ElementReflectionInterface $parentElement)
342 342
     {
Please login to merge, or discard this patch.
src/Parser/Reflection/ReflectionBase.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -145,7 +145,7 @@
 block discarded – undo
145 145
 
146 146
 
147 147
     /**
148
-     * @return ClassReflectionInterface[]
148
+     * @return \ArrayObject
149 149
      */
150 150
     public function getParsedClasses()
151 151
     {
Please login to merge, or discard this patch.
src/Parser/Reflection/ReflectionClass.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
 
10 10
 namespace ApiGen\Reflection;
11 11
 
12
-use ApiGen\Configuration\ConfigurationOptions as CO;
13 12
 use ApiGen\Reflection\Parts\IsDocumentedMagic;
14 13
 use ApiGen\Reflection\Parts\StartLineEndLine;
15 14
 use ApiGen\Reflection\Parts\StartPositionEndPositionMagic;
Please login to merge, or discard this patch.
src/Parser/Reflection/ReflectionElement.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
 
12 12
 use ApiGen\Contracts\Parser\Reflection\Behavior\InClassInterface;
13 13
 use ApiGen\Contracts\Parser\Reflection\ElementReflectionInterface;
14
-use TokenReflection;
15 14
 use TokenReflection\Exception\BaseException;
16 15
 use TokenReflection\ReflectionAnnotation;
17 16
 use TokenReflection\ReflectionClass;
Please login to merge, or discard this patch.
src/Templating/Filters/Helpers/ElementUrlFactory.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
 
38 38
 
39 39
     /**
40
-     * @param ElementReflectionInterface|string $element
40
+     * @param ElementReflectionInterface $element
41 41
      * @return string|NULL
42 42
      */
43 43
     public function createForElement($element)
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
 
10 10
 namespace ApiGen\Templating\Filters\Helpers;
11 11
 
12
-use ApiGen\Configuration\Configuration;
13 12
 use ApiGen\Configuration\ConfigurationOptions as CO;
14 13
 use ApiGen\Configuration\Theme\ThemeConfigOptions as TCO;
15 14
 use ApiGen\Contracts\Configuration\ConfigurationInterface;
Please login to merge, or discard this patch.