Slide 11
Slide 11 text
© Perforce Software, Inc.
Result
-$worksheet->getDefaultStyle();
+$worksheet->getParent()->getDefaultStyle();
-$worksheet->setSharedStyle($sharedStyle, $range);
+$worksheet->duplicateStyle($sharedStyle, $range);
-$cell = $worksheet->setCellValue('A1', 'value', true);
+$cell = $worksheet->getCell('A1')->setValue('value');
-PHPExcel_Cell::absoluteCoordinate()
+PhpOffice\PhpSpreadsheet\Cell\Coordinate::absoluteCoordinate()