| @@ -375,14 +375,14 @@ | ||
| 375 | 375 | { |
| 376 | 376 | $functionName = strtolower(str_replace('_', '', $functionName)); |
| 377 | 377 | |
| 378 | 378 | // Test for function calls |
| 379 | - if (in_array($functionName, self::$functions, true)) { | |
| 379 | + if (in_array($functionName, self::$functions)) { | |
| 380 | 380 | $functionName = "\\" . __NAMESPACE__ . "\\{$functionName}"; |
| 381 | 381 | return $functionName($this, ...$arguments); |
| 382 | 382 | } |
| 383 | 383 | // Test for operation calls |
| 384 | - if (in_array($functionName, self::$operations, true)) { | |
| 384 | + if (in_array($functionName, self::$operations)) { | |
| 385 | 385 | $functionName = "\\" . __NAMESPACE__ . "\\{$functionName}"; |
| 386 | 386 | return $functionName($this, ...$arguments); |
| 387 | 387 | } |
| 388 | 388 | throw new Exception('Function or Operation does not exist'); |