mirror of
https://github.com/openvk/chandler.git
synced 2025-03-29 12:38:12 +03:00
11 lines
182 B
PHP
11 lines
182 B
PHP
<?php declare(strict_types=1);
|
|
namespace Chandler\MVC\Routing;
|
|
|
|
class Route
|
|
{
|
|
public $raw;
|
|
public $regex;
|
|
public $namespace;
|
|
public $presenter;
|
|
public $action;
|
|
}
|