Fixed type annotation.

This commit is contained in:
Alexander M. Turek 2019-06-26 13:14:13 +02:00
parent 85ac1a6dd5
commit 753bf7e0df
1 changed files with 3 additions and 3 deletions

View File

@ -71,9 +71,9 @@ interface UrlGeneratorInterface extends RequestContextAwareInterface
*
* The special parameter _fragment will be used as the document fragment suffixed to the final URL.
*
* @param string $name The name of the route
* @param mixed $parameters An array of parameters
* @param int $referenceType The type of reference to be generated (one of the constants)
* @param string $name The name of the route
* @param mixed[] $parameters An array of parameters
* @param int $referenceType The type of reference to be generated (one of the constants)
*
* @return string The generated URL
*