summaryrefslogtreecommitdiffstats
path: root/lib/private/appframework/routing/routeconfig.php
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2014-05-13 23:23:11 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2014-05-13 23:23:11 +0200
commit5fb94bf76f199a4dc713fe6e37e683d1d908e972 (patch)
tree7d2e456d6618c0674556ba8089b1a047df090f6f /lib/private/appframework/routing/routeconfig.php
parent401bc60981f3a5da967ee7aa26662b46f0502aa0 (diff)
parent37ba6f503abfdd0f24ac515d1c71aa4a705a211f (diff)
downloadnextcloud-server-5fb94bf76f199a4dc713fe6e37e683d1d908e972.tar.gz
nextcloud-server-5fb94bf76f199a4dc713fe6e37e683d1d908e972.zip
Merge pull request #8542 from owncloud/phpdoc-improvements
PHPDoc Improvements
Diffstat (limited to 'lib/private/appframework/routing/routeconfig.php')
-rw-r--r--lib/private/appframework/routing/routeconfig.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/private/appframework/routing/routeconfig.php b/lib/private/appframework/routing/routeconfig.php
index a3bbde6af53..91ea7778d08 100644
--- a/lib/private/appframework/routing/routeconfig.php
+++ b/lib/private/appframework/routing/routeconfig.php
@@ -61,7 +61,7 @@ class RouteConfig {
/**
* Creates one route base on the give configuration
- * @param $routes
+ * @param array $routes
* @throws \UnexpectedValueException
*/
private function processSimpleRoutes($routes)
@@ -105,7 +105,7 @@ class RouteConfig {
* - update
* - destroy
*
- * @param $routes
+ * @param array $routes
*/
private function processResources($routes)
{
@@ -151,7 +151,7 @@ class RouteConfig {
/**
* Based on a given route name the controller name is generated
- * @param $controller
+ * @param string $controller
* @return string
*/
private function buildControllerName($controller)
@@ -161,7 +161,7 @@ class RouteConfig {
/**
* Based on the action part of the route name the controller method name is generated
- * @param $action
+ * @param string $action
* @return string
*/
private function buildActionName($action) {
@@ -170,7 +170,7 @@ class RouteConfig {
/**
* Generates the id used in the url part o the route url
- * @param $resource
+ * @param string $resource
* @return string
*/
private function buildResourceId($resource) {
@@ -179,7 +179,7 @@ class RouteConfig {
/**
* Underscored strings are converted to camel case strings
- * @param $str string
+ * @param string $str
* @return string
*/
private function underScoreToCamelCase($str) {