blob: 17ef98a01040b56c3e6513aa363f7cb0f673b0a3 (
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 FuncType
{
public function __construct(
public ResultType $args,
public ResultType $returns,
) {
}
}
|