Total Complexity | 2 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class UrlBuilder |
||
12 | { |
||
13 | /** |
||
14 | * Returns the URL to the current module, including $_GET['id']. |
||
15 | * |
||
16 | * @param array $uriParameters optional parameters to add to the URL |
||
17 | * |
||
18 | * @throws \TYPO3\CMS\Backend\Routing\Exception\RouteNotFoundException |
||
19 | */ |
||
20 | public static function getInfoModuleUrl(array $uriParameters = []): Uri |
||
30 |