summaryrefslogtreecommitdiffstats
path: root/lib/public/route
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2014-04-15 18:00:38 +0200
committerBart Visscher <bartv@thisnet.nl>2014-04-15 22:55:47 +0200
commitcc8a4511fea5108cd088d49a27cb34a59d7d59e5 (patch)
tree88ea73b726622248c579ed34dbebefa8b95ac3f4 /lib/public/route
parenta4b7f5155fbd0c66fa418199305fccd5c2e7bb31 (diff)
downloadnextcloud-server-cc8a4511fea5108cd088d49a27cb34a59d7d59e5.tar.gz
nextcloud-server-cc8a4511fea5108cd088d49a27cb34a59d7d59e5.zip
Fix PHPdoc in lib/public
using scrutinizer patch
Diffstat (limited to 'lib/public/route')
-rw-r--r--lib/public/route/iroute.php6
-rw-r--r--lib/public/route/irouter.php6
2 files changed, 12 insertions, 0 deletions
diff --git a/lib/public/route/iroute.php b/lib/public/route/iroute.php
index 66fdb841821..d5610e762a8 100644
--- a/lib/public/route/iroute.php
+++ b/lib/public/route/iroute.php
@@ -10,6 +10,7 @@ namespace OCP\Route;
interface IRoute {
/**
* Specify PATCH as the method to use with this route
+ * @return \OCP\Route\IRoute
*/
public function patch();
@@ -26,21 +27,25 @@ interface IRoute {
* it is called directly
*
* @param $file
+ * @return void
*/
public function actionInclude($file);
/**
* Specify GET as the method to use with this route
+ * @return \OCP\Route\IRoute
*/
public function get();
/**
* Specify POST as the method to use with this route
+ * @return \OCP\Route\IRoute
*/
public function post();
/**
* Specify DELETE as the method to use with this route
+ * @return \OCP\Route\IRoute
*/
public function delete();
@@ -74,6 +79,7 @@ interface IRoute {
/**
* Specify PUT as the method to use with this route
+ * @return \OCP\Route\IRoute
*/
public function put();
}
diff --git a/lib/public/route/irouter.php b/lib/public/route/irouter.php
index 125cd29e81b..1c003c7b4b9 100644
--- a/lib/public/route/irouter.php
+++ b/lib/public/route/irouter.php
@@ -17,10 +17,14 @@ interface IRouter {
*/
public function getRoutingFiles();
+ /**
+ * @return string
+ */
public function getCacheKey();
/**
* loads the api routes
+ * @return void
*/
public function loadRoutes($app = null);
@@ -28,6 +32,7 @@ interface IRouter {
* Sets the collection to use for adding routes
*
* @param string $name Name of the collection to use.
+ * @return void
*/
public function useCollection($name);
@@ -47,6 +52,7 @@ interface IRouter {
*
* @param string $url The url to find
* @throws \Exception
+ * @return void
*/
public function match($url);