aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Execution/Result.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Execution/Result.php')
-rw-r--r--src/Execution/Result.php21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/Execution/Result.php b/src/Execution/Result.php
deleted file mode 100644
index c3cc64a..0000000
--- a/src/Execution/Result.php
+++ /dev/null
@@ -1,21 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Nsfisis\Waddiwasi\Execution;
-
-abstract readonly class Result
-{
- /**
- * @param list<int|float|Ref> $values
- */
- final public static function Values(array $values): Results\Values
- {
- return new Results\Values($values);
- }
-
- final public static function Trap(): Results\Trap
- {
- return new Results\Trap();
- }
-}