Completed
Pull Request — master (#202)
by
unknown
08:51 queued 05:33
created
src/PhpPresentation/PhpPresentation.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -381,7 +381,7 @@
 block discarded – undo
381 381
 
382 382
     /**
383 383
      * Set the zoom of the document (in percentage)
384
-     * @param float $zoom
384
+     * @param integer $zoom
385 385
      * @return PhpPresentation
386 386
      */
387 387
     public function setZoom($zoom = 1)
Please login to merge, or discard this patch.
src/PhpPresentation/Reader/ODPresentation.php 2 patches
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.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -21,14 +21,12 @@
 block discarded – undo
21 21
 use PhpOffice\Common\XMLReader;
22 22
 use PhpOffice\Common\Drawing as CommonDrawing;
23 23
 use PhpOffice\PhpPresentation\PhpPresentation;
24
-use PhpOffice\PhpPresentation\Shape\Hyperlink;
25 24
 use PhpOffice\PhpPresentation\Shape\MemoryDrawing;
26 25
 use PhpOffice\PhpPresentation\Style\Bullet;
27 26
 use PhpOffice\PhpPresentation\Style\Color;
28 27
 use PhpOffice\PhpPresentation\Style\Font;
29 28
 use PhpOffice\PhpPresentation\Style\Shadow;
30 29
 use PhpOffice\PhpPresentation\Style\Alignment;
31
-use PhpOffice\PhpPresentation\Style\PhpOffice\PhpPresentation\Style;
32 30
 use PhpOffice\PhpPresentation\Shape\RichText;
33 31
 use PhpOffice\PhpPresentation\Shape\RichText\Paragraph;
34 32
 use PhpOffice\Common\PhpOffice\Common;
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 2 patches
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.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,6 @@
 block discarded – undo
21 21
 use PhpOffice\PhpPresentation\Shape\Chart\Legend;
22 22
 use PhpOffice\PhpPresentation\Shape\Chart\PlotArea;
23 23
 use PhpOffice\PhpPresentation\Shape\Chart\Title;
24
-use PhpOffice\PhpPresentation\Shape\Chart\Type\AbstractTypeBar;
25 24
 use PhpOffice\PhpPresentation\Shape\Chart\Type\Area;
26 25
 use PhpOffice\PhpPresentation\Shape\Chart\Type\Bar;
27 26
 use PhpOffice\PhpPresentation\Shape\Chart\Type\Bar3D;
Please login to merge, or discard this patch.