Completed
Pull Request — develop (#91)
by Mike
10:26
created
src/phpDocumentor/Reflection/NodeVisitor/ElementNameResolver.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@
 block discarded – undo
120 120
     /**
121 121
      * Builds the name of the current node using the parts that are pushed to the parts list.
122 122
      *
123
-     * @return null|string
123
+     * @return string
124 124
      */
125 125
     private function buildName()
126 126
     {
Please login to merge, or discard this patch.
src/phpDocumentor/Reflection/Php/Class_.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@
 block discarded – undo
97 97
     /**
98 98
      * Returns the superclass this class is extending if available.
99 99
      *
100
-     * @return NUll|Fqsen
100
+     * @return Class_
101 101
      */
102 102
     public function getParent()
103 103
     {
Please login to merge, or discard this patch.
src/phpDocumentor/Reflection/Php/Factory/ClassConstantIterator.php 1 patch
Doc Comments   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -87,6 +87,9 @@  discard block
 block discarded – undo
87 87
         return $docComment;
88 88
     }
89 89
 
90
+    /**
91
+     * @return \PhpParser\Node\Expr
92
+     */
90 93
     public function getValue()
91 94
     {
92 95
         return $this->classConstants->consts[$this->index]->value;
@@ -96,7 +99,7 @@  discard block
 block discarded – undo
96 99
      * (PHP 5 &gt;= 5.0.0)<br/>
97 100
      * Return the current element
98 101
      * @link http://php.net/manual/en/iterator.current.php
99
-     * @return mixed Can return any type.
102
+     * @return ClassConstantIterator Can return any type.
100 103
      */
101 104
     public function current()
102 105
     {
@@ -118,7 +121,7 @@  discard block
 block discarded – undo
118 121
      * (PHP 5 &gt;= 5.0.0)<br/>
119 122
      * Return the key of the current element
120 123
      * @link http://php.net/manual/en/iterator.key.php
121
-     * @return mixed scalar on success, or null on failure.
124
+     * @return integer scalar on success, or null on failure.
122 125
      */
123 126
     public function key()
124 127
     {
Please login to merge, or discard this patch.
src/phpDocumentor/Reflection/Php/Factory/Constant.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
      * @param ClassConstantIterator $object object to convert to an Element
63 63
      * @param StrategyContainer $strategies used to convert nested objects.
64 64
      * @param Context $context of the created object
65
-     * @return Constant
65
+     * @return ConstantElement
66 66
      */
67 67
     public function create($object, StrategyContainer $strategies, Context $context = null)
68 68
     {
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
      * @param Doc $docBlock
80 80
      * @param StrategyContainer $strategies
81 81
      * @param Context $context
82
-     * @return null|\phpDocumentor\Reflection\DocBlock
82
+     * @return null|\phpDocumentor\Reflection\Element
83 83
      */
84 84
     private function createDocBlock(Doc $docBlock = null, StrategyContainer $strategies, Context $context = null)
85 85
     {
Please login to merge, or discard this patch.
src/phpDocumentor/Reflection/Php/Factory/Property.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
     /**
49 49
      * Returns true when the strategy is able to handle the object.
50 50
      *
51
-     * @param object $object object to check.
51
+     * @param PropertyIterator $object object to check.
52 52
      * @return boolean
53 53
      */
54 54
     public function matches($object)
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
      * @param Doc $docBlock
109 109
      * @param StrategyContainer $strategies
110 110
      * @param Context $context
111
-     * @return null|\phpDocumentor\Reflection\DocBlock
111
+     * @return null|\phpDocumentor\Reflection\Element
112 112
      */
113 113
     private function createDocBlock(Doc $docBlock = null, StrategyContainer $strategies, Context $context = null)
114 114
     {
Please login to merge, or discard this patch.
src/phpDocumentor/Reflection/Php/Factory/Trait_.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
      * @param Doc $docBlock
107 107
      * @param StrategyContainer $strategies
108 108
      * @param Context $context
109
-     * @return null|\phpDocumentor\Reflection\DocBlock
109
+     * @return null|Element
110 110
      */
111 111
     private function createDocBlock(Doc $docBlock = null, StrategyContainer $strategies, Context $context = null)
112 112
     {
Please login to merge, or discard this patch.
src/phpDocumentor/Reflection/Php/ProjectFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@
 block discarded – undo
103 103
      * Gets Namespace from the project if it exists, otherwise returns a new namepace
104 104
      *
105 105
      * @param Project $project
106
-     * @param $name
106
+     * @param string $name
107 107
      * @return Namespace_
108 108
      */
109 109
     private function getNamespaceByName(Project $project, $name)
Please login to merge, or discard this patch.
tests/example.file.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -99,7 +99,6 @@
 block discarded – undo
99 99
         /**
100 100
          * Calculates the price for this specific component.
101 101
          *
102
-         * @param float[] $...additionalPrices Additional costs may be passed
103 102
          *
104 103
          * @return float
105 104
          */
Please login to merge, or discard this patch.
tests/unit/phpDocumentor/Reflection/Php/Factory/Class_Test.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -257,7 +257,7 @@
 block discarded – undo
257 257
 
258 258
 
259 259
     /**
260
-     * @return m\MockInterface|ClassNode
260
+     * @return m\MockInterface
261 261
      */
262 262
     private function buildClassMock()
263 263
     {
Please login to merge, or discard this patch.