blob: 267916bc368539c0a4531a0724c11622b968b20d (
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\Structure\Types;
final readonly class ResultType
{
/**
* @param list<ValType> $types
*/
public function __construct(
public array $types,
) {
}
}
|