Fix a couple of now invalid callable references in the Calculation Engine lookup table

This commit is contained in:
MarkBaker 2021-04-28 14:20:32 +02:00
parent 8d7be25823
commit 44ebae9438
1 changed files with 2 additions and 2 deletions

View File

@ -1406,7 +1406,7 @@ class Calculation
],
'INDEX' => [
'category' => Category::CATEGORY_LOOKUP_AND_REFERENCE,
'functionCall' => [LookupRef::class, 'INDEX'],
'functionCall' => [LookupRef\Matrix::class, 'index'],
'argumentCount' => '1-4',
],
'INDIRECT' => [
@ -2419,7 +2419,7 @@ class Calculation
],
'TEXTJOIN' => [
'category' => Category::CATEGORY_TEXT_AND_DATA,
'functionCall' => [TextData::class, 'TEXTJOIN'],
'functionCall' => [TextData\Concatenate::class, 'TEXTJOIN'],
'argumentCount' => '3+',
],
'TIME' => [