Skip to content

Commit

Permalink
ajout de llm dans la liste des function
Browse files Browse the repository at this point in the history
  • Loading branch information
timouchee committed May 24, 2024
1 parent 16ce88f commit 8dfdc5c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/PhpSpreadsheet/Calculation/Calculation.php
Original file line number Diff line number Diff line change
Expand Up @@ -1634,6 +1634,16 @@ public static function getExcelConstants(string $key): bool|null
'functionCall' => [Statistical\Trends::class, 'LINEST'],
'argumentCount' => '1-4',
],

'LLM' => [
'category' => Category::CATEGORY_STATISTICAL,
'functionCall' => [External\Llm::class, 'sumErroringStrings'],

Check failure on line 1640 in src/PhpSpreadsheet/Calculation/Calculation.php

View workflow job for this annotation

GitHub Actions / phpstan

Class PhpOffice\PhpSpreadsheet\Calculation\External\Llm not found.
'argumentCount' => '1+',
],




'LN' => [
'category' => Category::CATEGORY_MATH_AND_TRIG,
'functionCall' => [MathTrig\Logarithms::class, 'natural'],
Expand Down

0 comments on commit 8dfdc5c

Please sign in to comment.