summaryrefslogtreecommitdiff
path: root/src/RouteMatch.php
blob: d43bf807acc79f0f6e7190925d5e00224ba7f42c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

declare(strict_types=1);

namespace Lightscale\Router;

readonly class RouteMatch
{
    public function __construct(
        public PathSegmentMatch $segmentMatch,
        public Route $route,
    ) {
    }
}