diff options
author | msquare <msquare@notrademark.de> | 2018-08-06 12:30:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-06 12:30:30 +0200 |
commit | a3ce3ea23de2e38968ddc98baf330dfa1f544b1a (patch) | |
tree | 646a1dca1db5e801f70733ce6b30d8682241207f /src/helpers.php | |
parent | 9ca36bed3446cdd4060d7d6fa1025512d0922e0e (diff) | |
parent | 6962c2b790b5428699fe5897de840d41090fcd37 (diff) |
Merge pull request #443 from MyIgel/legacy-url-support
UrlGeneratorInterface and "Legacy URL" support
Diffstat (limited to 'src/helpers.php')
-rw-r--r-- | src/helpers.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/helpers.php b/src/helpers.php index 5a48498a..1915eb86 100644 --- a/src/helpers.php +++ b/src/helpers.php @@ -5,7 +5,7 @@ use Engelsystem\Application; use Engelsystem\Config\Config; use Engelsystem\Http\Request; use Engelsystem\Renderer\Renderer; -use Engelsystem\Routing\UrlGenerator; +use Engelsystem\Routing\UrlGeneratorInterface; use Symfony\Component\HttpFoundation\Session\SessionInterface; /** @@ -114,7 +114,7 @@ function session($key = null, $default = null) /** * @param string $path * @param array $parameters - * @return UrlGenerator|string + * @return UrlGeneratorInterface|string */ function url($path = null, $parameters = []) { |