mirror of
https://github.com/openvk/chandler.git
synced 2025-03-31 21:43:59 +03:00
Reformatting the Route class.
This commit is contained in:
parent
545be21dbf
commit
7cfedf6eff
1 changed files with 15 additions and 5 deletions
|
@ -1,11 +1,21 @@
|
|||
<?php declare(strict_types=1);
|
||||
<?php
|
||||
|
||||
declare(strict_types = 1);
|
||||
|
||||
namespace Chandler\MVC\Routing;
|
||||
|
||||
/**
|
||||
* @package Chandler\MVC\Routing
|
||||
*/
|
||||
class Route
|
||||
{
|
||||
public $raw;
|
||||
public $regex;
|
||||
public $namespace;
|
||||
public $presenter;
|
||||
public $action;
|
||||
|
||||
public $namespace;
|
||||
|
||||
public $presenter;
|
||||
|
||||
public $raw;
|
||||
|
||||
public $regex;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue