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