PATH:
home
/
lab2454c
/
costbloc.com
/
vendor
/
phpoffice
/
phpspreadsheet
/
src
/
PhpSpreadsheet
/
Reader
/
Xlsx
<?php namespace PhpOffice\PhpSpreadsheet\Reader\Xlsx; class BaseParserClass { /** * @param mixed $value */ protected static function boolean($value): bool { if (is_object($value)) { $value = (string) $value; // @phpstan-ignore-line } if (is_numeric($value)) { return (bool) $value; } return $value === 'true' || $value === 'TRUE'; } }
[-] SheetViews.php
[edit]
[-] TableReader.php
[edit]
[-] Chart.php
[edit]
[+]
..
[-] PageSetup.php
[edit]
[-] Styles.php
[edit]
[-] Theme.php
[edit]
[-] WorkbookView.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]
[-] Namespaces.php
[edit]