@@ -285,6 +285,11 @@ |
||
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)) { |
@@ -283,7 +283,7 @@ |
||
283 | 283 | * |
284 | 284 | * @param \PhpOffice\Common\XMLWriter $objWriter XML Writer |
285 | 285 | * @param boolean $isReference |
286 | - * @param mixed $value |
|
286 | + * @param string $value |
|
287 | 287 | * @param string $reference |
288 | 288 | */ |
289 | 289 | protected function writeSingleValueOrReference($objWriter, $isReference, $value, $reference) |
@@ -1318,7 +1318,7 @@ discard block |
||
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 |
||
3423 | 3423 | } |
3424 | 3424 | |
3425 | 3425 | /** |
3426 | - * @param $stream |
|
3426 | + * @param string $stream |
|
3427 | 3427 | * @param int $pos |
3428 | 3428 | * @throws \Exception |
3429 | 3429 | */ |
@@ -2,20 +2,20 @@ |
||
2 | 2 | |
3 | 3 | namespace PhpOffice\PhpPresentation\Writer\PowerPoint2007; |
4 | 4 | |
5 | -use PhpOffice\Common\Drawing as CommonDrawing; |
|
6 | -use PhpOffice\Common\XMLWriter; |
|
7 | -use PhpOffice\PhpPresentation\Shape\Chart as ShapeChart; |
|
8 | -use PhpOffice\PhpPresentation\Shape\Comment; |
|
9 | -use PhpOffice\PhpPresentation\Shape\Drawing as ShapeDrawing; |
|
10 | -use PhpOffice\PhpPresentation\Shape\Group; |
|
11 | -use PhpOffice\PhpPresentation\Shape\Video; |
|
12 | -use PhpOffice\PhpPresentation\Shape\Audio; |
|
13 | -use PhpOffice\PhpPresentation\Shape\RichText; |
|
14 | -use PhpOffice\PhpPresentation\Shape\RichText\Run; |
|
15 | -use PhpOffice\PhpPresentation\Shape\RichText\TextElement; |
|
16 | -use PhpOffice\PhpPresentation\Shape\Table as ShapeTable; |
|
17 | -use PhpOffice\PhpPresentation\Slide; |
|
18 | -use PhpOffice\PhpPresentation\Slide\Background\Image; |
|
5 | +use PhpOffice\Common\Drawing as CommonDrawing; |
|
6 | +use PhpOffice\Common\XMLWriter; |
|
7 | +use PhpOffice\PhpPresentation\Shape\Chart as ShapeChart; |
|
8 | +use PhpOffice\PhpPresentation\Shape\Comment; |
|
9 | +use PhpOffice\PhpPresentation\Shape\Drawing as ShapeDrawing; |
|
10 | +use PhpOffice\PhpPresentation\Shape\Group; |
|
11 | +use PhpOffice\PhpPresentation\Shape\Video; |
|
12 | +use PhpOffice\PhpPresentation\Shape\Audio; |
|
13 | +use PhpOffice\PhpPresentation\Shape\RichText; |
|
14 | +use PhpOffice\PhpPresentation\Shape\RichText\Run; |
|
15 | +use PhpOffice\PhpPresentation\Shape\RichText\TextElement; |
|
16 | +use PhpOffice\PhpPresentation\Shape\Table as ShapeTable; |
|
17 | +use PhpOffice\PhpPresentation\Slide; |
|
18 | +use PhpOffice\PhpPresentation\Slide\Background\Image; |
|
19 | 19 | use PhpOffice\PhpPresentation\Slide\Note; |
20 | 20 | |
21 | 21 | class PptSlides extends AbstractSlide { |