class CompiledRoute
CompiledRoutes are returned by the RouteCompiler class.
Methods
|
__construct(string $staticPrefix, string $regex, array $tokens, array $pathVariables, string|null $hostRegex = null, array $hostTokens = array(), array $hostVariables = array(), array $variables = array())
Constructor. |
||
| string |
getStaticPrefix()
Returns the static prefix. |
|
| string |
getRegex()
Returns the regex. |
|
| string|null |
getHostRegex()
Returns the host regex |
|
| array |
getTokens()
Returns the tokens. |
|
| array |
getHostTokens()
Returns the host tokens. |
|
| array |
getVariables()
Returns the variables. |
|
| array |
getPathVariables()
Returns the path variables. |
|
| array |
getHostVariables()
Returns the host variables. |
Details
at line 42
public
__construct(string $staticPrefix, string $regex, array $tokens, array $pathVariables, string|null $hostRegex = null, array $hostTokens = array(), array $hostVariables = array(), array $variables = array())
Constructor.
at line 59
public string
getStaticPrefix()
Returns the static prefix.
at line 69
public string
getRegex()
Returns the regex.
at line 79
public string|null
getHostRegex()
Returns the host regex
at line 89
public array
getTokens()
Returns the tokens.
at line 99
public array
getHostTokens()
Returns the host tokens.
at line 109
public array
getVariables()
Returns the variables.
at line 119
public array
getPathVariables()
Returns the path variables.
at line 129
public array
getHostVariables()
Returns the host variables.