aboutsummaryrefslogtreecommitdiff
path: root/src/NXP/Classes/CustomFunction.php
diff options
context:
space:
mode:
authorAlexander Kiryukhin <a.kiryukhin@mail.ru>2020-05-20 22:26:59 +0300
committerGitHub <noreply@github.com>2020-05-20 22:26:59 +0300
commit913cf0a1e8920dbcc18649fa173a0c7e6ba5d5ef (patch)
treebb1049748d4b6f12209d0a868fb17592b85789ea /src/NXP/Classes/CustomFunction.php
parent949334d6c37d384800c639ba9941e94f5157f5ac (diff)
parent2c18fbb2452baa1839f9102b309de1967b30307d (diff)
Merge pull request #63 from phpfui/neonxp-ngv2.0.0
Update parameters and add back functions
Diffstat (limited to 'src/NXP/Classes/CustomFunction.php')
-rw-r--r--src/NXP/Classes/CustomFunction.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/NXP/Classes/CustomFunction.php b/src/NXP/Classes/CustomFunction.php
index 944f7d9..bf36405 100644
--- a/src/NXP/Classes/CustomFunction.php
+++ b/src/NXP/Classes/CustomFunction.php
@@ -32,7 +32,7 @@ class CustomFunction
* @param int $places
* @throws ReflectionException
*/
- public function __construct(string $name, callable $function, $places = null)
+ public function __construct(string $name, callable $function, ?int $places = null)
{
$this->name = $name;
$this->function = $function;
@@ -44,7 +44,7 @@ class CustomFunction
}
}
- public function execute(&$stack)
+ public function execute(array &$stack) : Token
{
if (count($stack) < $this->places) {
throw new IncorrectExpressionException();