@@ -22,7 +22,7 @@  | 
                                                    ||
| 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 |      { | 
                                                        
@@ -14,12 +14,13 @@  | 
                                                    ||
| 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 | }  | 
                                                        
@@ -161,7 +161,7 @@ discard block  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                    ||
| 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  | 
                                                        
@@ -14,7 +14,6 @@  | 
                                                    ||
| 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 |  { | 
                                                        
@@ -336,7 +336,7 @@  | 
                                                    ||
| 336 | 336 | |
| 337 | 337 | |
| 338 | 338 | /**  | 
                                                        
| 339 | - * @return array  | 
                                                        |
| 339 | + * @return ElementReflectionInterface[]  | 
                                                        |
| 340 | 340 | */  | 
                                                        
| 341 | 341 | private function getSubElements(ElementReflectionInterface $parentElement)  | 
                                                        
| 342 | 342 |      { | 
                                                        
@@ -145,7 +145,7 @@  | 
                                                    ||
| 145 | 145 | |
| 146 | 146 | |
| 147 | 147 | /**  | 
                                                        
| 148 | - * @return ClassReflectionInterface[]  | 
                                                        |
| 148 | + * @return \ArrayObject  | 
                                                        |
| 149 | 149 | */  | 
                                                        
| 150 | 150 | public function getParsedClasses()  | 
                                                        
| 151 | 151 |      { | 
                                                        
@@ -9,7 +9,6 @@  | 
                                                    ||
| 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;  | 
                                                        
@@ -11,7 +11,6 @@  | 
                                                    ||
| 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;  | 
                                                        
@@ -37,7 +37,7 @@  | 
                                                    ||
| 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)  | 
                                                        
@@ -9,7 +9,6 @@  | 
                                                    ||
| 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;  |