wrong parameter count in method call
This commit is contained in:
parent
4c7adbb33f
commit
88eee3be72
@ -43,7 +43,12 @@ class InternalEntityFactory implements InternalEntityFactoryInterface
|
|||||||
*/
|
*/
|
||||||
public function createSheetIterator($filePath, $optionsManager, $sharedStringsManager)
|
public function createSheetIterator($filePath, $optionsManager, $sharedStringsManager)
|
||||||
{
|
{
|
||||||
$sheetManager = $this->managerFactory->createSheetManager($filePath, $optionsManager, $sharedStringsManager, $this);
|
$sheetManager = $this->managerFactory->createSheetManager(
|
||||||
|
$filePath,
|
||||||
|
$optionsManager,
|
||||||
|
$sharedStringsManager,
|
||||||
|
$this
|
||||||
|
);
|
||||||
|
|
||||||
return new SheetIterator($sheetManager);
|
return new SheetIterator($sheetManager);
|
||||||
}
|
}
|
||||||
|
@ -92,7 +92,11 @@ class Reader extends ReaderAbstract
|
|||||||
$this->sharedStringsManager->extractSharedStrings();
|
$this->sharedStringsManager->extractSharedStrings();
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->sheetIterator = $entityFactory->createSheetIterator($filePath, $this->optionsManager, $this->sharedStringsManager, $this->globalFunctionsHelper);
|
$this->sheetIterator = $entityFactory->createSheetIterator(
|
||||||
|
$filePath,
|
||||||
|
$this->optionsManager,
|
||||||
|
$this->sharedStringsManager
|
||||||
|
);
|
||||||
} else {
|
} else {
|
||||||
throw new IOException("Could not open $filePath for reading.");
|
throw new IOException("Could not open $filePath for reading.");
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user