Completed
Pull Request — develop (#230)
by Franck
06:45
created
src/PhpPresentation/Slide/AbstractSlide.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -43,6 +43,9 @@
 block discarded – undo
43 43
         return $this->relsIndex;
44 44
     }
45 45
 
46
+    /**
47
+     * @param string $indexName
48
+     */
46 49
     public function setRelsIndex($indexName)
47 50
     {
48 51
         $this->relsIndex = $indexName;
Please login to merge, or discard this patch.
src/PhpPresentation/Writer/PowerPoint2007/AbstractSlide.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,8 +48,8 @@
 block discarded – undo
48 48
 {
49 49
     /**
50 50
      * @param SlideMaster $pSlideMaster
51
-     * @param $objWriter
52
-     * @param $relId
51
+     * @param XMLWriter $objWriter
52
+     * @param integer $relId
53 53
      * @throws \Exception
54 54
      */
55 55
     protected function writeDrawingRelations(AbstractSlideAlias $pSlideMaster, $objWriter, $relId)
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -21,7 +21,6 @@  discard block
 block discarded – undo
21 21
 use PhpOffice\Common\XMLWriter;
22 22
 use PhpOffice\PhpPresentation\Shape\AbstractDrawing;
23 23
 use PhpOffice\PhpPresentation\Shape\Chart as ShapeChart;
24
-use PhpOffice\PhpPresentation\Shape\Comment;
25 24
 use PhpOffice\PhpPresentation\Shape\Drawing as ShapeDrawing;
26 25
 use PhpOffice\PhpPresentation\Shape\Group;
27 26
 use PhpOffice\PhpPresentation\Shape\Line;
@@ -35,7 +34,6 @@  discard block
 block discarded – undo
35 34
 use PhpOffice\PhpPresentation\Slide;
36 35
 use PhpOffice\PhpPresentation\Slide\Background\Image;
37 36
 use PhpOffice\PhpPresentation\Slide\Note;
38
-use PhpOffice\PhpPresentation\Slide\Transition;
39 37
 use PhpOffice\PhpPresentation\Style\Alignment;
40 38
 use PhpOffice\PhpPresentation\Style\Bullet;
41 39
 use PhpOffice\PhpPresentation\Style\Border;
Please login to merge, or discard this patch.
src/PhpPresentation/Writer/PowerPoint2007/PptSlideMasters.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,6 @@
 block discarded – undo
84 84
     /**
85 85
      * Write slide to XML format
86 86
      *
87
-     * @param  \PhpOffice\PhpPresentation\Slide\SlideMaster $pSlideMaster
88 87
      * @return string              XML Output
89 88
      * @throws \Exception
90 89
      */
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -5,14 +5,12 @@
 block discarded – undo
5 5
 use PhpOffice\Common\XMLWriter;
6 6
 use PhpOffice\PhpPresentation\Shape\AbstractDrawing;
7 7
 use PhpOffice\PhpPresentation\Shape\Chart as ShapeChart;
8
-use PhpOffice\PhpPresentation\Shape\Comment;
9 8
 use PhpOffice\PhpPresentation\Shape\Group;
10 9
 use PhpOffice\PhpPresentation\Shape\Line;
11 10
 use PhpOffice\PhpPresentation\Shape\RichText;
12 11
 use PhpOffice\PhpPresentation\Shape\Table as ShapeTable;
13 12
 use PhpOffice\PhpPresentation\Slide;
14 13
 use PhpOffice\PhpPresentation\Slide\SlideMaster;
15
-use PhpOffice\PhpPresentation\Style\TextStyle;
16 14
 
17 15
 class PptSlideMasters extends AbstractSlide
18 16
 {
Please login to merge, or discard this patch.