Total Complexity | 1 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | class None |
||
21 | extends \Aimeos\Base\View\Helper\Base |
||
22 | implements \Aimeos\Base\View\Helper\Url\Iface |
||
23 | { |
||
24 | /** |
||
25 | * Returns an empty string as URL. |
||
26 | * |
||
27 | * @param string|null $target Route or page which should be the target of the link (if any) |
||
28 | * @param string|null $controller Name of the controller which should be part of the link (if any) |
||
29 | * @param string|null $action Name of the action which should be part of the link (if any) |
||
30 | * @param array $params Associative list of parameters that should be part of the URL |
||
31 | * @param string[] $trailing Trailing URL parts that are not relevant to identify the resource (for pretty URLs) |
||
32 | * @param array $config Additional configuration parameter per URL |
||
33 | * @return string Complete URL that can be used in the template |
||
34 | */ |
||
35 | public function transform( ?string $target = null, ?string $controller = null, ?string $action = null, |
||
41 |