Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1441 ariadna 1
<?php
2
 
3
namespace PhpOffice\PhpSpreadsheet\Reader\Xlsx;
4
 
5
use Stringable;
6
 
7
class BaseParserClass
8
{
9
    protected static function boolean(mixed $value): bool
10
    {
11
        if (is_object($value)) {
12
            $value = ($value instanceof Stringable) ? ((string) $value) : 'true';
13
        }
14
 
15
        if (is_numeric($value)) {
16
            return (bool) $value;
17
        }
18
 
19
        return $value === 'true' || $value === 'TRUE';
20
    }
21
}