![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/ledger.corals.io/vendor/openspout/openspout/src/Reader/XLSX/Creator/ |
<?php namespace OpenSpout\Reader\XLSX\Creator; use OpenSpout\Common\Helper\Escaper; use OpenSpout\Reader\XLSX\Helper\CellValueFormatter; use OpenSpout\Reader\XLSX\Manager\SharedStringsManager; use OpenSpout\Reader\XLSX\Manager\StyleManager; /** * Factory to create helpers. */ class HelperFactory extends \OpenSpout\Common\Creator\HelperFactory { /** * @param SharedStringsManager $sharedStringsManager Manages shared strings * @param StyleManager $styleManager Manages styles * @param bool $shouldFormatDates Whether date/time values should be returned as PHP objects or be formatted as strings * @param bool $shouldUse1904Dates Whether date/time values should use a calendar starting in 1904 instead of 1900 * * @return CellValueFormatter */ public function createCellValueFormatter($sharedStringsManager, $styleManager, $shouldFormatDates, $shouldUse1904Dates) { $escaper = $this->createStringsEscaper(); return new CellValueFormatter($sharedStringsManager, $styleManager, $shouldFormatDates, $shouldUse1904Dates, $escaper); } /** * @return Escaper\XLSX */ public function createStringsEscaper() { // @noinspection PhpUnnecessaryFullyQualifiedNameInspection return new Escaper\XLSX(); } }