mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-20 18:30:42 +00:00
276f7813d5
* check if coordinate is inside range * Added coordinateIsInsideRange tests * fix coordinateIsInsideRange error throwing * fix coordinateIsInsideRange error throwing * add support to worksheet name * validateReferenceAndGetData type * change validate and add tests data * fix tests data reference * fix absolute reference error * fix boundaries to get range * fix scrutinizer erros * Additional Test Cases --------- Co-authored-by: oleibman <10341515+oleibman@users.noreply.github.com>
9 lines
199 B
PHP
9 lines
199 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
['First argument needs to be a range', 'invalidRange', 'B4'],
|
|
['Second argument needs to be a single coordinate', 'A1:E20', 'invalidCoordinate'],
|
|
];
|