summaryrefslogtreecommitdiff
path: root/src/Enums
diff options
context:
space:
mode:
authorSam Light <sam@lightscale.co.uk>2026-06-10 19:00:32 +0100
committerSam Light <sam@lightscale.co.uk>2026-06-10 19:00:32 +0100
commit5fe7c87967ff29c4a8f03a9186918d8359f4887e (patch)
treedfdd4fdc7a4e96266305f82f5846750ab2efabc9 /src/Enums
parent01eac9658c3bc486d2d42a18557fdb82a536348e (diff)
big update
Diffstat (limited to 'src/Enums')
-rw-r--r--src/Enums/PathSegmentType.php (renamed from src/Enums/SpecialSegment.php)6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Enums/SpecialSegment.php b/src/Enums/PathSegmentType.php
index 6b451c5..6547842 100644
--- a/src/Enums/SpecialSegment.php
+++ b/src/Enums/PathSegmentType.php
@@ -4,7 +4,9 @@ declare(strict_types=1);
namespace Lightscale\Router\Enums;
-enum SpecialSegment: string
+enum PathSegmentType
{
- case Root = '<root>';
+ case Raw;
+ case Root;
+ case Parameter;
}