mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-30 20:18:00 +00:00
Issue 2551 array enable lookup ref functions (#2606)
* Start work on array-enabling the Lookup and Reference functions Requires a new method (`evaluateArrayArgumentsSubsetFrom()`) in the `ArrayEnabled` Trait to handle functions where the arguments that need special array handling are trailing rather than leading arguments
This commit is contained in:
@@ -33,7 +33,7 @@ class ColumnsTest extends TestCase
|
||||
/**
|
||||
* @dataProvider providerColumnsArray
|
||||
*/
|
||||
public function testColumnsArray($expectedResult, string $argument): void
|
||||
public function testColumnsArray(int $expectedResult, string $argument): void
|
||||
{
|
||||
$calculation = Calculation::getInstance();
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ class RowsTest extends TestCase
|
||||
/**
|
||||
* @dataProvider providerRowsArray
|
||||
*/
|
||||
public function testRowsArray($expectedResult, string $argument): void
|
||||
public function testRowsArray(int $expectedResult, string $argument): void
|
||||
{
|
||||
$calculation = Calculation::getInstance();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user