blob: 182b761b6a384de499b42c80b50899d39e069da2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
declare(strict_types=1);
namespace Nsfisis\Waddiwasi\Structure\Types;
final readonly class GlobalType
{
public function __construct(
public Mut $mut,
public ValType $valType,
) {
}
}
|