diff options
author | Bruce Wells <brucekwells@gmail.com> | 2019-12-01 02:41:36 +0300 |
---|---|---|
committer | Bruce Wells <brucekwells@gmail.com> | 2019-12-01 02:47:04 +0300 |
commit | 2db48eff956f5a63513685cb5b576b588c698912 (patch) | |
tree | dd8e7f7ff8b59ff8eff7c5a71364e0c452fe8684 /src | |
parent | 84f3f967b71fc39bf61be13e46c89158ad0a34a9 (diff) |
PHP 7.4 support
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) { |