PATH:
home
/
lab2454c
/
aficb.com
/
vendor
/
phpoffice
/
phpspreadsheet
/
src
/
PhpSpreadsheet
/
Calculation
/
LookupRef
<?php namespace PhpOffice\PhpSpreadsheet\Calculation\LookupRef; use PhpOffice\PhpSpreadsheet\Calculation\Exception; use PhpOffice\PhpSpreadsheet\Calculation\Functions; class LookupRefValidations { /** * @param mixed $value */ public static function validateInt($value): int { if (!is_numeric($value)) { if (Functions::isError($value)) { throw new Exception($value); } throw new Exception(Functions::VALUE()); } return (int) floor((float) $value); } /** * @param mixed $value */ public static function validatePositiveInt($value, bool $allowZero = true): int { $value = self::validateInt($value); if (($allowZero === false && $value <= 0) || $value < 0) { throw new Exception(Functions::VALUE()); } return $value; } }
[-] Hyperlink.php
[edit]
[+]
..
[-] Address.php
[edit]
[-] Indirect.php
[edit]
[-] Selection.php
[edit]
[-] Formula.php
[edit]
[-] HLookup.php
[edit]
[-] Offset.php
[edit]
[-] LookupRefValidations.php
[edit]
[-] Helpers.php
[edit]
[-] LookupBase.php
[edit]
[-] RowColumnInformation.php
[edit]
[-] Lookup.php
[edit]
[-] VLookup.php
[edit]
[-] Matrix.php
[edit]
[-] ExcelMatch.php
[edit]