PATH:
home
/
lab2454c
/
tripvare.com
/
vendor
/
phpoffice
/
phpspreadsheet
/
src
/
PhpSpreadsheet
/
Reader
/
Xlsx
<?php namespace PhpOffice\PhpSpreadsheet\Reader\Xlsx; class BaseParserClass { protected static function boolean($value) { if (is_object($value)) { $value = (string) $value; } if (is_numeric($value)) { return (bool) $value; } return $value === strtolower('true'); } }
[-] SheetViews.php
[edit]
[-] Chart.php
[edit]
[+]
..
[-] PageSetup.php
[edit]
[-] Styles.php
[edit]
[-] Theme.php
[edit]
[-] SheetViewOptions.php
[edit]
[-] Hyperlinks.php
[edit]
[-] ConditionalStyles.php
[edit]
[-] AutoFilter.php
[edit]
[-] ColumnAndRowAttributes.php
[edit]
[-] BaseParserClass.php
[edit]
[-] Properties.php
[edit]
[-] DataValidations.php
[edit]