aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Execution/MemInst.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Execution/MemInst.php')
-rw-r--r--src/Execution/MemInst.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Execution/MemInst.php b/src/Execution/MemInst.php
index 3999052..240e415 100644
--- a/src/Execution/MemInst.php
+++ b/src/Execution/MemInst.php
@@ -6,13 +6,13 @@ namespace Nsfisis\Waddiwasi\Execution;
use Nsfisis\Waddiwasi\Structure\Types\MemType;
-final readonly class MemInst
+final class MemInst
{
/**
* @param list<Byte> $data
*/
public function __construct(
- public MemType $type,
+ public readonly MemType $type,
public array $data,
) {
}