Skip to content

Commit

Permalink
fix after MR
Browse files Browse the repository at this point in the history
  • Loading branch information
aVadim483 committed Sep 7, 2024
1 parent d5464fb commit 8fc9d09
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/FastExcelWriter/Excel.php
Original file line number Diff line number Diff line change
Expand Up @@ -1670,7 +1670,7 @@ public function getStyleFonts(): array

public function getStyleFills(): array
{
return $this->style->getStyleFonts();
return $this->style->getStyleFills();
}

public function getStyleBorders(): array
Expand All @@ -1688,16 +1688,17 @@ public function getStyleIndexedColors(): array
return $this->style->getIndexedColors();
}

public function addStyle($cellStyle, &$resultStyle): array
{
return $this->style->addStyle($cellStyle, $resultStyle);
}

public function getStyleNumberFormats(): array
{
return $this->style->_getNumberFormats();
}

public function addStyle($cellStyle, &$resultStyle): int
{
return $this->style->addStyle($cellStyle, $resultStyle);
}

}

// EOF

0 comments on commit 8fc9d09

Please sign in to comment.