Completed
Pull Request — develop (#183)
by Franck
07:12
created
src/PhpPresentation/Reader/ODPresentation.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -455,7 +455,6 @@
 block discarded – undo
455 455
     
456 456
     /**
457 457
      * Read Paragraph Item
458
-     * @param RichText $oShape
459 458
      * @param \DOMElement $oNodeParent
460 459
      */
461 460
     protected function readParagraphItem(Paragraph $oParagraph, \DOMElement $oNodeParent)
Please login to merge, or discard this patch.
src/PhpPresentation/Reader/PowerPoint2007.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -425,6 +425,9 @@
 block discarded – undo
425 425
         $this->oPhpPresentation->getActiveSlide()->addShape($oShape);
426 426
     }
427 427
     
428
+    /**
429
+     * @param string $baseFile
430
+     */
428 431
     protected function loadShapeRichText(XMLReader $document, \DOMElement $node, $baseFile)
429 432
     {
430 433
         // Core
Please login to merge, or discard this patch.
src/PhpPresentation/Writer/PowerPoint2007/Chart.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -293,7 +293,7 @@  discard block
 block discarded – undo
293 293
      *
294 294
      * @param \PhpOffice\Common\XMLWriter $objWriter   XML Writer
295 295
      * @param boolean                        $isReference
296
-     * @param mixed                          $value
296
+     * @param string                          $value
297 297
      * @param string                         $reference
298 298
      */
299 299
     protected function writeSingleValueOrReference($objWriter, $isReference, $value, $reference)
@@ -1520,7 +1520,7 @@  discard block
 block discarded – undo
1520 1520
     /**
1521 1521
      * Write Type Pie
1522 1522
      *
1523
-     * @param  \PhpOffice\PhpPresentation\Shared\XMLWriter       $objWriter    XML Writer
1523
+     * @param  XMLWriter       $objWriter    XML Writer
1524 1524
      * @param  \PhpOffice\PhpPresentation\Shape\Chart\Type\Pie $subject
1525 1525
      * @param  boolean                              $includeSheet
1526 1526
      * @throws \Exception
Please login to merge, or discard this patch.
src/PhpPresentation/PresentationProperties.php 1 patch
Doc Comments   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -74,7 +74,6 @@  discard block
 block discarded – undo
74 74
     
75 75
     /**
76 76
 	 * Define the path for the thumbnail file / preview picture
77
-     * @param string $value
78 77
      * @return \PhpOffice\PhpPresentation\PresentationProperties
79 78
      */
80 79
     public function setThumbnailPath($path = '')
@@ -88,7 +87,7 @@  discard block
 block discarded – undo
88 87
     /**
89 88
      * Mark a document as final
90 89
      * @param bool $state
91
-     * @return PhpPresentation
90
+     * @return PresentationProperties
92 91
      */
93 92
     public function markAsFinal($state = true)
94 93
     {
@@ -109,8 +108,8 @@  discard block
 block discarded – undo
109 108
 
110 109
     /**
111 110
      * Set the zoom of the document (in percentage)
112
-     * @param float $zoom
113
-     * @return PhpPresentation
111
+     * @param integer $zoom
112
+     * @return PresentationProperties
114 113
      */
115 114
     public function setZoom($zoom = 1)
116 115
     {
Please login to merge, or discard this patch.