Skip to content

Commit 23c1637

Browse files
committed
fix typehint namespacing;
1 parent 80d8d78 commit 23c1637

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/phpDocumentor/Reflection/Php/Factory/AbstractFactory.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
namespace phpDocumentor\Reflection\Php\Factory;
55

6+
use phpDocumentor\Reflection\DocBlock as DocBlockInstance;
67
use phpDocumentor\Reflection\Element;
78
use phpDocumentor\Reflection\Php\ProjectFactoryStrategy;
89
use phpDocumentor\Reflection\Php\StrategyContainer;
@@ -32,7 +33,7 @@ final public function create($object, StrategyContainer $strategies, ?Context $c
3233
abstract protected function doCreate($object, StrategyContainer $strategies, ?Context $context = null);
3334

3435
/**
35-
* @param Node|\PropertyIterator|\ClassConstantIterator|\Doc $stmt
36+
* @param Node|PropertyIterator|ClassConstantIterator|Doc $stmt
3637
* @return Element
3738
*/
3839
protected function createMember($stmt, StrategyContainer $strategies, ?Context $context = null)
@@ -42,7 +43,7 @@ protected function createMember($stmt, StrategyContainer $strategies, ?Context $
4243
}
4344

4445
/**
45-
* @return null|\phpDocumentor\Reflection\DocBlock
46+
* @return null|DocBlockInstance
4647
*/
4748
protected function createDocBlock(StrategyContainer $strategies, ?Doc $docBlock = null, ?Context $context = null)
4849
{

0 commit comments

Comments
 (0)