aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/WebAssembly/Execution/FuncInsts/Host.php
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-07-10 01:21:55 +0900
committernsfisis <nsfisis@gmail.com>2025-07-10 01:21:55 +0900
commit43806ead64146d285e846d8809c976b60e8abd87 (patch)
treef43319fd15dbdfb6daea59f093144ed553fab48c /src/WebAssembly/Execution/FuncInsts/Host.php
parent20d59037a9e860ec5c114154e47c91fa48a01771 (diff)
downloadphp-waddiwasi-43806ead64146d285e846d8809c976b60e8abd87.tar.gz
php-waddiwasi-43806ead64146d285e846d8809c976b60e8abd87.tar.zst
php-waddiwasi-43806ead64146d285e846d8809c976b60e8abd87.zip
feat: update dependencies
Diffstat (limited to 'src/WebAssembly/Execution/FuncInsts/Host.php')
-rw-r--r--src/WebAssembly/Execution/FuncInsts/Host.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/WebAssembly/Execution/FuncInsts/Host.php b/src/WebAssembly/Execution/FuncInsts/Host.php
index 6a66325..c5dc1cd 100644
--- a/src/WebAssembly/Execution/FuncInsts/Host.php
+++ b/src/WebAssembly/Execution/FuncInsts/Host.php
@@ -5,12 +5,14 @@ declare(strict_types=1);
namespace Nsfisis\Waddiwasi\WebAssembly\Execution\FuncInsts;
use Nsfisis\Waddiwasi\WebAssembly\Execution\FuncInst;
+use Nsfisis\Waddiwasi\WebAssembly\Execution\Ref;
+use Nsfisis\Waddiwasi\WebAssembly\Execution\Runtime;
use Nsfisis\Waddiwasi\WebAssembly\Structure\Types\FuncType;
final readonly class Host extends FuncInst
{
/**
- * @param callable $callback
+ * @param callable(Runtime, int|float|Ref...): ?(int|float|Ref|list<int|float|Ref>) $callback
*/
public function __construct(
public FuncType $type,