diff options
author | Bruce Wells <brucekwells@gmail.com> | 2020-02-07 20:27:48 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-07 20:27:48 +0300 |
commit | 0eeed45566ec7bac6865cb6d30acb5777ccf6f43 (patch) | |
tree | 08f466dfb6e945eb4f6b1b826307d33b2aa7ecb2 /src | |
parent | 43790a456e8ec4104895869b178165fec65613d7 (diff) | |
parent | 2db48eff956f5a63513685cb5b576b588c698912 (diff) |
Merge branch 'master' into master
Diffstat (limited to 'src')
-rw-r--r-- | src/NXP/MathExecutor.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/NXP/MathExecutor.php b/src/NXP/MathExecutor.php index 5de7dc5..9d3f5e8 100644 --- a/src/NXP/MathExecutor.php +++ b/src/NXP/MathExecutor.php @@ -365,7 +365,7 @@ class MathExecutor 'log' => function ($arg) { return log($arg); }, - 'log10' => function ($arg) { + 'log10' => function ($arg) { return log10($arg); }, 'log1p' => function ($arg) { @@ -401,7 +401,7 @@ class MathExecutor 'sqrt' => function ($arg) { return sqrt($arg); }, - 'tan' => function ($arg) { + 'tan' => function ($arg) { return tan($arg); }, 'tanh' => function ($arg) { |