aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Execution/Vals/Ref.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Execution/Vals/Ref.php')
-rw-r--r--src/Execution/Vals/Ref.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/Execution/Vals/Ref.php b/src/Execution/Vals/Ref.php
new file mode 100644
index 0000000..8ea8a94
--- /dev/null
+++ b/src/Execution/Vals/Ref.php
@@ -0,0 +1,16 @@
+<?php
+
+declare(strict_types=1);
+
+namespace Nsfisis\Waddiwasi\Execution\Vals;
+
+use Nsfisis\Waddiwasi\Execution\Ref as OrigRef;
+use Nsfisis\Waddiwasi\Execution\Val;
+
+final readonly class Ref extends Val
+{
+ public function __construct(
+ public OrigRef $inner,
+ ) {
+ }
+}