Skip to content

Commit 0b98604

Browse files
committed
#240 : PowerPoint2007 Reader : Support of Table (PHPMd fixes)
1 parent 81d7dbb commit 0b98604

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/PhpPresentation/Reader/PowerPoint2007.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1047,7 +1047,7 @@ protected function loadShapeTable(XMLReader $document, \DOMElement $node, Abstra
10471047
}
10481048
}
10491049

1050-
$oFill = $this->loadStyleFill($document, $oElementTcPr, $oSlide);
1050+
$oFill = $this->loadStyleFill($document, $oElementTcPr);
10511051
if ($oFill instanceof Fill) {
10521052
$oCell->setFill($oFill);
10531053
}
@@ -1086,10 +1086,9 @@ protected function loadShapeTable(XMLReader $document, \DOMElement $node, Abstra
10861086
/**
10871087
* @param XMLReader $xmlReader
10881088
* @param \DOMElement $oElement
1089-
* @param AbstractSlide $oSlide
10901089
* @return null|Fill
10911090
*/
1092-
protected function loadStyleFill(XMLReader $xmlReader, \DOMElement $oElement, AbstractSlide $oSlide)
1091+
protected function loadStyleFill(XMLReader $xmlReader, \DOMElement $oElement)
10931092
{
10941093
// Gradient fill
10951094
$oElementFill = $xmlReader->getElement('a:gradFill', $oElement);

0 commit comments

Comments
 (0)