blob: 619ad25ecb5181e0099379d727f9ca3801c38f6a (
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 TableType
{
public function __construct(
public Limits $limits,
public RefType $refType,
) {
}
}
|