Files
PhpSpreadsheet/tests/data/Cell/CoordinateIsInsideRangeException.php
Adrian 276f7813d5 check if coordinate is inside range (#3779)
* 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>
2023-11-17 06:56:22 -08:00

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'],
];