| 1 | <?php |
||
| 18 | class RouteCompiled |
||
| 19 | { |
||
| 20 | protected $prefix; |
||
| 21 | protected $uriRegex; |
||
| 22 | protected $domainRegex; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @param string $prefix |
||
| 26 | * @param string $uriRegex |
||
| 27 | * @param string $domainRegex |
||
| 28 | */ |
||
| 29 | public function __construct($prefix, $uriRegex, $domainRegex) |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @return string |
||
| 38 | */ |
||
| 39 | public function getPrefix() |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @return string |
||
| 46 | */ |
||
| 47 | public function getUriRegex() |
||
| 51 | |||
| 52 | /** |
||
| 53 | * @return string |
||
| 54 | */ |
||
| 55 | public function getDomainRegex() |
||
| 59 | |||
| 60 | public function hasUriRegex() |
||
| 64 | } |
||
| 65 |