Completed
Pull Request — develop (#435)
by Franck
09:07
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/Shape/GenericShape.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -22,6 +22,7 @@
 block discarded – undo
22 22
      * @param int $toX
23 23
      * @param int $toY
24 24
      * @param int $rotation which takes the rotation for ellipse
25
+     * @param string $shape
25 26
      */
26 27
     public function __construct($fromX, $fromY, $toX, $toY, $rotation, $shape)
27 28
     {
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
@@ -1318,7 +1318,7 @@  discard block
 block discarded – undo
1318 1318
      * A container record that specifies text related data for a shape.
1319 1319
      * @param string $stream
1320 1320
      * @param integer $pos
1321
-     * @return array
1321
+     * @return integer
1322 1322
      * @throws \Exception
1323 1323
      * @link https://msdn.microsoft.com/en-us/library/dd910958(v=office.12).aspx
1324 1324
      */
@@ -3423,7 +3423,7 @@  discard block
 block discarded – undo
3423 3423
     }
3424 3424
 
3425 3425
     /**
3426
-     * @param $stream
3426
+     * @param string $stream
3427 3427
      * @param int $pos
3428 3428
      * @throws \Exception
3429 3429
      */
Please login to merge, or discard this patch.
src/PhpPresentation/Writer/PowerPoint2007/AbstractSlide.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,8 +46,8 @@
 block discarded – undo
46 46
 {
47 47
     /**
48 48
      * @param AbstractSlideAlias $pSlideMaster
49
-     * @param $objWriter
50
-     * @param $relId
49
+     * @param XMLWriter $objWriter
50
+     * @param integer $relId
51 51
      * @return mixed
52 52
      * @throws \Exception
53 53
      */
Please login to merge, or discard this patch.