Methods |
public
|
__construct(
string $staticPrefix,
string $regex,
array $tokens,
array $pathVariables,
string|null $hostRegex = null,
array $hostTokens = [],
array $hostVariables = [],
array $variables = [],
)
Parameters
$staticPrefix |
The static prefix of the compiled route
|
$regex |
The regular expression to use to match this route
|
$tokens |
An array of tokens to use to generate URL for this route
|
$pathVariables |
An array of path variables
|
$hostRegex |
Host regex
|
$hostTokens |
Host tokens
|
$hostVariables |
An array of host variables
|
$variables |
An array of variables (variables defined in the path and in the host patterns)
|
|
#
|
public
|
__serialize(): array
|
#
|
public
|
__unserialize(array $data): void
|
#
|
public
|
getStaticPrefix(): string
Returns the static prefix.
Returns the static prefix.
|
#
|
public
|
getRegex(): string
Returns the regex.
|
#
|
public
|
getHostRegex(): ?string
Returns the host regex.
|
#
|
public
|
getTokens(): array
Returns the tokens.
|
#
|
public
|
getHostTokens(): array
Returns the host tokens.
|
#
|
public
|
getVariables(): array
Returns the variables.
|
#
|
public
|
getPathVariables(): array
Returns the path variables.
Returns the path variables.
|
#
|
public
|
getHostVariables(): array
Returns the host variables.
Returns the host variables.
|
#
|