aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Structure/Modules/Local.php
blob: 5c3e22466ce4d2a77ef9ba13cd4a58f8e4931c8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

declare(strict_types=1);

namespace Nsfisis\Waddiwasi\Structure\Modules;

use Nsfisis\Waddiwasi\Structure\Types\ValType;

final readonly class Local
{
    public function __construct(
        public ValType $type,
    ) {
    }
}