Reformatting the Route class.

This commit is contained in:
Ilya Bakhlin 2021-12-28 21:07:18 +01:00
parent 545be21dbf
commit 7cfedf6eff

View file

@ -1,11 +1,21 @@
<?php declare(strict_types=1); <?php
declare(strict_types = 1);
namespace Chandler\MVC\Routing; namespace Chandler\MVC\Routing;
/**
* @package Chandler\MVC\Routing
*/
class Route class Route
{ {
public $raw;
public $regex;
public $namespace;
public $presenter;
public $action; public $action;
public $namespace;
public $presenter;
public $raw;
public $regex;
} }