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