1 2 3 4 5 6 7 8 9 10 11 12 13 14
<?php namespace Lightscale\Router; use Lightscale\Router\Enums\PathSegmentType; readonly class PathSegmentTypeMatch { final public function __construct( public PathSegmentType $type, public string $value, ) { } }