Skip to content

Commit da84c76

Browse files
committed
#230 : Fix CI
1 parent b31db88 commit da84c76

File tree

9 files changed

+26
-19
lines changed

9 files changed

+26
-19
lines changed

src/PhpPresentation/Shape/Placeholder.php

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,22 @@
11
<?php
22
/**
3-
* Created by PhpStorm.
4-
* Author: Vincent Kool
5-
* User: vakool
6-
* Date: 14-03-16
7-
* Time: 14:56
3+
* This file is part of PHPPresentation - A pure PHP library for reading and writing
4+
* presentations documents.
85
*
9-
* Description: Placeholders are created at the master and layout levels.
10-
* That is, they can be added and deleted at those levels but not at the slide level.
11-
* At the slide level they are only referenced or linked to the lower layout layer.
12-
* That is, a slide can reference a placeholder at the layout level but not at the master level.
13-
* Similarly a layout can reference a placeholder at the master slide level.
6+
* PHPPresentation is free software distributed under the terms of the GNU Lesser
7+
* General Public License version 3 as published by the Free Software Foundation.
148
*
9+
* For the full copyright and license information, please read the LICENSE
10+
* file that was distributed with this source code. For the full list of
11+
* contributors, visit https://github.com/PHPOffice/PHPPresentation/contributors.
12+
*
13+
* @link https://github.com/PHPOffice/PHPPresentation
14+
* @copyright 2009-2015 PHPPresentation contributors
15+
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
1516
*/
17+
1618
namespace PhpOffice\PhpPresentation\Shape;
19+
1720
class Placeholder
1821
{
1922
/** Placeholder Type constants */
@@ -88,4 +91,4 @@ public function setIdx($idx)
8891
{
8992
$this->idx = $idx;
9093
}
91-
}
94+
}

src/PhpPresentation/Slide/AbstractSlide.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,4 +358,4 @@ public function setTransition(Transition $transition = null)
358358
$this->slideTransition = $transition;
359359
return $this;
360360
}
361-
}
361+
}

src/PhpPresentation/Slide/SlideLayout.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,4 @@ public function __construct(SlideMaster $pSlideMaster)
4949
// Set identifier
5050
$this->identifier = md5(rand(0, 9999) . time());
5151
}
52-
}
52+
}

src/PhpPresentation/Slide/SlideMaster.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,4 +104,4 @@ public function getAllSlideLayouts()
104104
{
105105
return $this->slideLayouts;
106106
}
107-
}
107+
}

src/PhpPresentation/Style/ColorMap.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@
1414
* @copyright 2009-2015 PHPPresentation contributors
1515
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
1616
*/
17+
1718
namespace PhpOffice\PhpPresentation\Style;
19+
1820
/**
1921
* PhpOffice\PhpPresentation\Style\ColorMap
2022
*/
@@ -77,4 +79,4 @@ public function getMapping()
7779
{
7880
return $this->mapping;
7981
}
80-
}
82+
}

src/PhpPresentation/Style/SchemeColor.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
* @copyright 2009-2015 PHPPresentation contributors
1515
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
1616
*/
17+
1718
namespace PhpOffice\PhpPresentation\Style;
1819

1920
class SchemeColor extends Color
@@ -40,4 +41,4 @@ public function __construct()
4041
{
4142
return $this;
4243
}
43-
}
44+
}

src/PhpPresentation/Style/TextStyle.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
* @copyright 2009-2015 PHPPresentation contributors
1515
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
1616
*/
17+
1718
namespace PhpOffice\PhpPresentation\Style;
1819

1920
use PhpOffice\PhpPresentation\Shape\RichText\Paragraph as RichTextParagraph;
@@ -274,4 +275,4 @@ public function __construct($default = true)
274275
* Text - Alignment, Tabs, Other (http://officeopenxml.com/drwSp-text-paraProps-align.php)
275276
* <a:tabLst> (list of tab stops in a paragraph)
276277
*/
277-
}
278+
}

src/PhpPresentation/Writer/PowerPoint2007/AbstractSlide.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1054,4 +1054,4 @@ private function getGUID()
10541054
return $uuid;
10551055
}
10561056
}
1057-
}
1057+
}

src/PhpPresentation/Writer/PowerPoint2007/PptSlideMasters.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,4 +225,4 @@ public function writeSlideMaster(SlideMaster $pSlide)
225225
// Return
226226
return $objWriter->getData();
227227
}
228-
}
228+
}

0 commit comments

Comments
 (0)