Completed
Push — develop ( 80740b...61b5c3 )
by Mike
10:20
created
src/phpDocumentor/Descriptor/ClassDescriptor.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -88,6 +88,7 @@  discard block
 block discarded – undo
88 88
 
89 89
     /**
90 90
      * {@inheritDoc}
91
+     * @param boolean $final
91 92
      */
92 93
     public function setFinal($final)
93 94
     {
@@ -104,6 +105,7 @@  discard block
 block discarded – undo
104 105
 
105 106
     /**
106 107
      * {@inheritDoc}
108
+     * @param boolean $abstract
107 109
      */
108 110
     public function setAbstract($abstract)
109 111
     {
Please login to merge, or discard this patch.
src/phpDocumentor/Descriptor/InterfaceDescriptor.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -133,6 +133,9 @@
 block discarded – undo
133 133
         return $inheritedMethods;
134 134
     }
135 135
 
136
+    /**
137
+     * @param string $package
138
+     */
136 139
     public function setPackage($package)
137 140
     {
138 141
         parent::setPackage($package);
Please login to merge, or discard this patch.
phpDocumentor/Descriptor/Builder/Reflector/Tags/ExampleAssemblerTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
     /**
75 75
      * Returns a mock Example tag that will return example data (as provided in the class constants) when asked to.
76 76
      *
77
-     * @return m\MockInterface
77
+     * @return Example
78 78
      */
79 79
     private function givenExampleTagWithTestData()
80 80
     {
Please login to merge, or discard this patch.
unit/phpDocumentor/Descriptor/Builder/Reflector/Tags/SeeAssemblerTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -85,6 +85,9 @@
 block discarded – undo
85 85
         $this->assertSame([], $descriptor->getErrors()->getAll());
86 86
     }
87 87
 
88
+    /**
89
+     * @param string $description
90
+     */
88 91
     protected function givenASeeTag($reference, $description)
89 92
     {
90 93
         return new DocBlock\Tags\See(
Please login to merge, or discard this patch.
unit/phpDocumentor/Descriptor/Builder/Reflector/Tags/UsesAssemblerTest.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -63,6 +63,10 @@
 block discarded – undo
63 63
         $this->assertSame([], $descriptor->getErrors()->getAll());
64 64
     }
65 65
 
66
+    /**
67
+     * @param string $description
68
+     * @param string $reference
69
+     */
66 70
     protected function givenAUsesTag($description, $reference)
67 71
     {
68 72
         return new Uses(
Please login to merge, or discard this patch.
unit/phpDocumentor/Descriptor/Builder/Reflector/FunctionAssemblerTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@
 block discarded – undo
102 102
      * @param string $namespace
103 103
      * @param string $functionName
104 104
      * @param Argument $argumentMock
105
-     * @param DocBlock|m\MockInterface $docBlockMock
105
+     * @param DocBlock $docBlockMock
106 106
      *
107 107
      * @return Function_
108 108
      */
Please login to merge, or discard this patch.
tests/unit/phpDocumentor/Compiler/Pass/ResolveInlineLinkAndSeeTagsTest.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
     /**
218 218
      * Returns a collection with descriptor. This collection will be scanned to see if a link can be made to a file.
219 219
      *
220
-     * @param DescriptorAbstract|m\MockInterface $descriptor
220
+     * @param m\MockInterface $descriptor
221 221
      *
222 222
      * @return Collection|m\MockInterface
223 223
      */
@@ -251,7 +251,7 @@  discard block
 block discarded – undo
251 251
      * @param m\MockInterface $descriptor
252 252
      * @param DescriptorAbstract $elementToLinkTo
253 253
      *
254
-     * @return DescriptorAbstract
254
+     * @return m\MockInterface
255 255
      */
256 256
     private function whenDescriptionContainsSeeOrLinkWithElement($descriptor, $elementToLinkTo)
257 257
     {
Please login to merge, or discard this patch.
unit/phpDocumentor/Application/Console/Command/Template/ListCommandTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
      *
50 50
      * @param string[] $templateNames
51 51
      *
52
-     * @return m\MockInterface|Factory
52
+     * @return Factory
53 53
      */
54 54
     private function givenAFactoryWithTemplateNames(array $templateNames)
55 55
     {
Please login to merge, or discard this patch.
src/phpDocumentor/Plugin/Scrybe/Command/Manual/ToLatexCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
      * from the Input object.
69 69
      *
70 70
      * @see BaseConvertCommand::getConverter() for the basic functionality.
71
-     * @return phpDocumentor\Plugin\Scrybe\Converter\ConverterInterface
71
+     * @return ToLatexInterface
72 72
      */
73 73
     protected function getConverter(InputInterface $input)
74 74
     {
Please login to merge, or discard this patch.