Passed
Push — master ( 059348...b37941 )
by Simon
02:58 queued 29s
created
Service/Excel.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
     }
194 194
 
195 195
     /**
196
-     * @return object
196
+     * @return \PHPExcel
197 197
      */
198 198
     public function getExcelObject()
199 199
     {
@@ -221,7 +221,7 @@  discard block
 block discarded – undo
221 221
      * is able to export
222 222
      *
223 223
      * @param string $format
224
-     * @return boolean
224
+     * @return boolean|null
225 225
      */
226 226
     public function checkOutputFormat($format)
227 227
     {
@@ -241,7 +241,7 @@  discard block
 block discarded – undo
241 241
     }
242 242
 
243 243
     /**
244
-     * @param type $title
244
+     * @param string $title
245 245
      */
246 246
     protected function setCurrentSheetTitle($title)
247 247
     {
Please login to merge, or discard this patch.
Service/Meta.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
      * Define an option and its value.
38 38
      *
39 39
      * @param string $key
40
-     * @param mixed  $value
40
+     * @param string  $value
41 41
      * @return $this For method chaining
42 42
      * @throws \InvalidArgumentException if key type is not a string or integer
43 43
      */
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
     /**
74 74
      * Get the value of a single option or return false if it doesn't exist
75 75
      *
76
-     * @param string|integer $key
76
+     * @param string $key
77 77
      * @return string|integer|boolean The option value
78 78
      */
79 79
     public function getOption($key)
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
    * data object.
144 144
    *
145 145
    * @param string         $key   The index to use
146
-   * @param string|integer $value The value to set
146
+   * @param string $value The value to set
147 147
    * @return $this
148 148
    * @throws \Exception
149 149
    */
@@ -268,7 +268,7 @@  discard block
 block discarded – undo
268 268
     /**
269 269
      * Return the information array relating to a specific column
270 270
      *
271
-     * @param type $key
271
+     * @param string $key
272 272
      * @return array
273 273
      * @throws \Exception
274 274
      */
@@ -299,7 +299,7 @@  discard block
 block discarded – undo
299 299
     /**
300 300
      * Return a specific piece of data from the current data point
301 301
      *
302
-     * @param type $key
302
+     * @param string $key
303 303
      * @return type
304 304
      */
305 305
     public function getPointValue($key)
Please login to merge, or discard this patch.
Service/Nav.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -278,7 +278,7 @@
 block discarded – undo
278 278
      * @param string $input
279 279
      * @param string $axis
280 280
      *
281
-     * @return type
281
+     * @return integer
282 282
      */
283 283
     public function parseNavReference($input = '', $axis = 'column')
284 284
     {
Please login to merge, or discard this patch.
Service/ReportBuilder.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
     /**
200 200
      * Return the navigation service object
201 201
      *
202
-     * @return Nav
202
+     * @return NavInterface
203 203
      */
204 204
     public function nav()
205 205
     {
@@ -239,7 +239,7 @@  discard block
 block discarded – undo
239 239
     /**
240 240
      * Return the data handling query service
241 241
      *
242
-     * @return Query
242
+     * @return QueryInterface
243 243
      */
244 244
     public function query()
245 245
     {
Please login to merge, or discard this patch.