Merge pull request #2802 from PHPOffice/Performance-Experimental-Changes
Simplify validation of columnId/rowId values when creating a CellAddress object
This commit is contained in:
commit
48b5d83ee8
|
|
@ -705,8 +705,8 @@ class Functions
|
||||||
|
|
||||||
public static function trimSheetFromCellReference(string $coordinate): string
|
public static function trimSheetFromCellReference(string $coordinate): string
|
||||||
{
|
{
|
||||||
while (strpos($coordinate, '!') !== false) {
|
if (strpos($coordinate, '!') !== false) {
|
||||||
$coordinate = substr($coordinate, strpos($coordinate, '!') + 1);
|
$coordinate = substr($coordinate, strrpos($coordinate, '!') + 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
return $coordinate;
|
return $coordinate;
|
||||||
|
|
|
||||||
|
|
@ -47,15 +47,9 @@ class CellAddress
|
||||||
*/
|
*/
|
||||||
private static function validateColumnAndRow($columnId, $rowId): void
|
private static function validateColumnAndRow($columnId, $rowId): void
|
||||||
{
|
{
|
||||||
$array = [$columnId, $rowId];
|
if (!is_numeric($columnId) || $columnId <= 0 || !is_numeric($rowId) || $rowId <= 0) {
|
||||||
array_walk(
|
throw new Exception('Row and Column Ids must be positive integer values');
|
||||||
$array,
|
}
|
||||||
function ($value): void {
|
|
||||||
if (!is_numeric($value) || $value <= 0) {
|
|
||||||
throw new Exception('Row and Column Ids must be positive integer values');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue