ok
Direktori : /home2/selectio/public_html/3-idiots/vendor/box/spout/src/Spout/Writer/Common/Entity/ |
Current File : /home2/selectio/public_html/3-idiots/vendor/box/spout/src/Spout/Writer/Common/Entity/Options.php |
<?php namespace Box\Spout\Writer\Common\Entity; /** * Class Options * Writers' options holder */ abstract class Options { // CSV specific options const FIELD_DELIMITER = 'fieldDelimiter'; const FIELD_ENCLOSURE = 'fieldEnclosure'; const SHOULD_ADD_BOM = 'shouldAddBOM'; // Multisheets options const TEMP_FOLDER = 'tempFolder'; const DEFAULT_ROW_STYLE = 'defaultRowStyle'; const SHOULD_CREATE_NEW_SHEETS_AUTOMATICALLY = 'shouldCreateNewSheetsAutomatically'; // XLSX specific options const SHOULD_USE_INLINE_STRINGS = 'shouldUseInlineStrings'; }