Completed
Push — develop ( f937fe...60406c )
by Mike
14s
created
tests/ReferenceImplementation.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -174,6 +174,9 @@  discard block
 block discarded – undo
174 174
     {
175 175
         const INTERFACE_CONSTANT = 'test';
176 176
 
177
+        /**
178
+         * @return SubInterface|null
179
+         */
177 180
         public function publicMethod();
178 181
     }
179 182
 
@@ -183,6 +186,10 @@  discard block
 block discarded – undo
183 186
      */
184 187
     interface AnotherSuperInterface
185 188
     {
189
+
190
+        /**
191
+         * @return void
192
+         */
186 193
         static public function staticMethod();
187 194
     }
188 195
 }
Please login to merge, or discard this patch.
src/phpDocumentor/Configuration.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -156,7 +156,7 @@
 block discarded – undo
156 156
     /**
157 157
      * Returns which templates and custom transformations need to be applied to the parsed data.
158 158
      *
159
-     * @return Transformer\Configuration\Transformations
159
+     * @return Transformations[]
160 160
      */
161 161
     public function getTransformations()
162 162
     {
Please login to merge, or discard this patch.
src/phpDocumentor/Descriptor/ArgumentDescriptor.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -117,7 +117,7 @@
 block discarded – undo
117 117
      *
118 118
      * @param boolean $isVariadic
119 119
      *
120
-     * @return false
120
+     * @return false|null
121 121
      */
122 122
     public function setVariadic($isVariadic)
123 123
     {
Please login to merge, or discard this patch.
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.
src/phpDocumentor/Plugin/Core/Transformer/Writer/Xsl.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,6 @@
 block discarded – undo
19 19
 use phpDocumentor\Transformer\Event\PreXslWriterEvent;
20 20
 use phpDocumentor\Transformer\Router\ForFileProxy;
21 21
 use phpDocumentor\Transformer\Router\Queue;
22
-use phpDocumentor\Transformer\Transformation;
23 22
 use phpDocumentor\Transformer\Transformation as TransformationObject;
24 23
 use phpDocumentor\Transformer\Writer\Exception\RequirementMissing;
25 24
 use phpDocumentor\Transformer\Writer\Routable;
Please login to merge, or discard this patch.
src/phpDocumentor/Plugin/Scrybe/Command/Manual/BaseConvertCommand.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
      *
163 163
      * @param InputInterface $input
164 164
      *
165
-     * @return TemplateInterface
165
+     * @return string
166 166
      */
167 167
     protected function getTemplate(InputInterface $input)
168 168
     {
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
      * Constructs a Fileset collection and returns that.
189 189
      *
190 190
      * @param array $sources    List of source paths.
191
-     * @param array $extensions List of extensions to scan for in directories.
191
+     * @param string[] $extensions List of extensions to scan for in directories.
192 192
      *
193 193
      * @return Collection
194 194
      */
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
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
      *
74 74
      * @see BaseConvertCommand::getConverter() for the basic functionality.
75 75
      *
76
-     * @return \phpDocumentor\Plugin\Scrybe\Converter\ConverterInterface
76
+     * @return ToLatexInterface
77 77
      */
78 78
     protected function getConverter(InputInterface $input)
79 79
     {
Please login to merge, or discard this patch.
src/phpDocumentor/Transformer/Router/Renderer.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -198,6 +198,9 @@
 block discarded – undo
198 198
         return $collection;
199 199
     }
200 200
 
201
+    /**
202
+     * @param string $presentation
203
+     */
201 204
     protected function renderLink($path, $presentation)
202 205
     {
203 206
         $url  = false;
Please login to merge, or discard this patch.