router-fastroute
router-fastroute copied to clipboard
Yii Router FastRoute adapter
Good afternoon. The basic implementation of `UrlGeneratorInterface` lacks parameters for `__construct()`. Thanks in advance
| Q | A | ------------- | --- | Is bugfix? | ✔️/❌ | New feature? | ✔️/❌ | Breaks BC? | ✔️/❌ | Fixed issues | comma-separated list of...
| Q | A | ------------- | --- | Is bugfix? | ✔️/❌ | New feature? | ✔️/❌ | Breaks BC? | ✔️/❌ | Fixed issues | comma-separated list of...
https://github.com/yiisoft/router-fastroute/blob/09166194b86d011116763692d0c2c8319c863993/src/UrlMatcher.php#L109 ### What steps will reproduce the problem? Specify `host()` with a schema and/or port in routes As example: ``` Group::create("/{_language}") ->routes( Route::get("/") ->action([SiteController::class, 'index']) ->name("site.index"), ) ->host("http://localhost:8080") // doesn't...