diff options
Diffstat (limited to 'src/Structure/Types/FuncType.php')
| -rw-r--r-- | src/Structure/Types/FuncType.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/Structure/Types/FuncType.php b/src/Structure/Types/FuncType.php new file mode 100644 index 0000000..17ef98a --- /dev/null +++ b/src/Structure/Types/FuncType.php @@ -0,0 +1,14 @@ +<?php + +declare(strict_types=1); + +namespace Nsfisis\Waddiwasi\Structure\Types; + +final readonly class FuncType +{ + public function __construct( + public ResultType $args, + public ResultType $returns, + ) { + } +} |
