Remove internal annotation

PHPStorm complained about those functions being declared as Internal. I doubt that this is actually the case since they are even in the public API.
This commit is contained in:
Lukas Reschke 2015-02-12 16:35:47 +01:00
parent c751ba0409
commit 2f80be45b0
1 changed files with 3 additions and 5 deletions

View File

@ -32,8 +32,7 @@ class URLGenerator implements IURLGenerator {
/** /**
* Creates an url using a defined route * Creates an url using a defined route
* @param string $route * @param string $route
* @param array $parameters * @param array $parameters args with param=>value, will be appended to the returned url
* @internal param array $args with param=>value, will be appended to the returned url
* @return string the url * @return string the url
* *
* Returns a url to the given route. * Returns a url to the given route.
@ -45,9 +44,8 @@ class URLGenerator implements IURLGenerator {
/** /**
* Creates an absolute url using a defined route * Creates an absolute url using a defined route
* @param string $route * @param string $routeName
* @param array $parameters * @param array $arguments args with param=>value, will be appended to the returned url
* @internal param array $args with param=>value, will be appended to the returned url
* @return string the url * @return string the url
* *
* Returns an absolute url to the given route. * Returns an absolute url to the given route.