aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Execution/Vals/Ref.php
blob: 8ea8a9415e114c9bc795c02e48494dac546e755e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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,
    ) {
    }
}