forked from PHP/Router
9 lines
144 B
PHP
9 lines
144 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace Sharkk\Router;
|
|
|
|
class SegmentRouter implements SegmentRouterInterface
|
|
{
|
|
use SegmentRouterTrait;
|
|
}
|