Remove Previously Announced Deprecations

Remove
- Worksheet::getHashCode
- Worksheet::getProtectecCells
- Worksheet::getStyles
- Drawing::setIsUrl
- IReader::SKIP_EMPTY_CELLS
- Settings:setLibXmlLoaderOptions and getLibXmlLoaderOptions
- Writer/Html::isMpdf
This commit is contained in:
oleibman
2025-02-04 19:30:57 -08:00
parent eafbed6ca8
commit 77815d2dcc
11 changed files with 13 additions and 118 deletions
@@ -133,8 +133,6 @@ class ByColumnAndRowTest extends TestCase
$sheet->fromArray($data, null, 'B2', true);
$sheet->protectCells([2, 2, 3, 3], 'secret', false);
$protectedRanges = $sheet->/** @scrutinizer ignore-deprecated*/ getProtectedCells();
self::assertArrayHasKey('B2:C3', $protectedRanges);
$protectedRanges2 = $sheet->getProtectedCellRanges();
self::assertArrayHasKey('B2:C3', $protectedRanges2);
$spreadsheet->disconnectWorksheets();