diff options
Diffstat (limited to 'src/Enums/SpecialSegment.php')
| -rw-r--r-- | src/Enums/SpecialSegment.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Enums/SpecialSegment.php b/src/Enums/SpecialSegment.php new file mode 100644 index 0000000..6b451c5 --- /dev/null +++ b/src/Enums/SpecialSegment.php @@ -0,0 +1,10 @@ +<?php + +declare(strict_types=1); + +namespace Lightscale\Router\Enums; + +enum SpecialSegment: string +{ + case Root = '<root>'; +} |
