aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Structure/Types/Limits.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Structure/Types/Limits.php')
-rw-r--r--src/Structure/Types/Limits.php24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/Structure/Types/Limits.php b/src/Structure/Types/Limits.php
deleted file mode 100644
index e2ec343..0000000
--- a/src/Structure/Types/Limits.php
+++ /dev/null
@@ -1,24 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Nsfisis\Waddiwasi\Structure\Types;
-
-final readonly class Limits
-{
- /**
- * @param U32 $min
- * @param ?U32 $max
- */
- public function __construct(
- public int $min,
- public ?int $max,
- ) {
- }
-
- public function isValid(): bool
- {
- return 0 <= $this->min &&
- ($this->max === null || $this->min <= $this->max);
- }
-}