summaryrefslogtreecommitdiff
path: root/src/PathSegmentTypeMatch.php
blob: c50e74ebf451b1e2a292e42b7160d25188735472 (plain)
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,
    ) {
    }
}