See Release Notes
Long Term Support Release
<?php namespace PhpOffice\PhpSpreadsheet\Reader\Xlsx; class BaseParserClass {< protected static function boolean($value)> /** > * @param mixed $value > */ > protected static function boolean($value): bool{ if (is_object($value)) { $value = (string) $value; } if (is_numeric($value)) { return (bool) $value; } return $value === strtolower('true'); } }