This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
interface UrlGeneratorInterface | |
{ | |
/** | |
* Generates a URL for the given route name and parameters. The options | |
* MAY be used to provide hints for the URL generation. This includes | |
* information about different parts of a URL, e.g. the scheme or port to | |
* use or whether absolute or relative URLs should be generated. | |
* |