Completed
Pull Request — develop (#360)
by
unknown
12:22
created
src/PhpPresentation/Writer/ODPresentation/ObjectsChart.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -285,6 +285,11 @@
 block discarded – undo
285 285
         }
286 286
     }
287 287
 
288
+    /**
289
+     * @param Chart\Gridlines $oGridlines
290
+     * @param string $styleName
291
+     * @param string $chartClass
292
+     */
288 293
     protected function writeGridline($oGridlines, $styleName, $chartClass)
289 294
     {
290 295
         if (!($oGridlines instanceof Chart\Gridlines)) {
Please login to merge, or discard this patch.
src/PhpPresentation/Writer/PowerPoint2007/PptCharts.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -283,7 +283,7 @@
 block discarded – undo
283 283
      *
284 284
      * @param \PhpOffice\Common\XMLWriter $objWriter XML Writer
285 285
      * @param boolean $isReference
286
-     * @param mixed $value
286
+     * @param string $value
287 287
      * @param string $reference
288 288
      */
289 289
     protected function writeSingleValueOrReference($objWriter, $isReference, $value, $reference)
Please login to merge, or discard this patch.
src/PhpPresentation/Reader/PowerPoint97.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1312,7 +1312,7 @@  discard block
 block discarded – undo
1312 1312
      * A container record that specifies text related data for a shape.
1313 1313
      * @param string $stream
1314 1314
      * @param integer $pos
1315
-     * @return array
1315
+     * @return integer
1316 1316
      * @link https://msdn.microsoft.com/en-us/library/dd910958(v=office.12).aspx
1317 1317
      */
1318 1318
     private function readRecordOfficeArtClientTextbox($stream, $pos)
@@ -3378,7 +3378,7 @@  discard block
 block discarded – undo
3378 3378
     }
3379 3379
 
3380 3380
     /**
3381
-     * @param $stream
3381
+     * @param string $stream
3382 3382
      * @param int $pos
3383 3383
      * @throws \Exception
3384 3384
      */
Please login to merge, or discard this patch.
src/PhpPresentation/Style/Font.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
     /**
169 169
      * Get Character Spacing
170 170
      *
171
-     * @return double
171
+     * @return integer
172 172
      */
173 173
     public function getCharacterSpacing()
174 174
     {
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
     /**
179 179
      * Set Character Spacing
180 180
      * Value in pt
181
-     * @param float|int $pValue
181
+     * @param integer $pValue
182 182
      * @return \PhpOffice\PhpPresentation\Style\Font
183 183
      */
184 184
     public function setCharacterSpacing($pValue = 0)
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
     /**
205 205
      * Set Size
206 206
      *
207
-     * @param float|int $pValue
207
+     * @param integer $pValue
208 208
      * @return \PhpOffice\PhpPresentation\Style\Font
209 209
      */
210 210
     public function setSize($pValue = 10)
Please login to merge, or discard this patch.