aboutsummaryrefslogtreecommitdiffstats
path: root/lib/appframework/controller/controller.php
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-08-21 01:00:26 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2013-08-21 01:00:26 +0200
commit911bd3c16f508eb8f3cb9b03a5a21e2aa72ebf79 (patch)
treea62c95caaeee6749e68123aa28af395eed36c2fe /lib/appframework/controller/controller.php
parente39083c36f7de22de78fb5bb51656111653ea42b (diff)
downloadnextcloud-server-911bd3c16f508eb8f3cb9b03a5a21e2aa72ebf79.tar.gz
nextcloud-server-911bd3c16f508eb8f3cb9b03a5a21e2aa72ebf79.zip
moving response classes over to OCP
Diffstat (limited to 'lib/appframework/controller/controller.php')
-rw-r--r--lib/appframework/controller/controller.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/appframework/controller/controller.php b/lib/appframework/controller/controller.php
index f6f34618ec6..a7498ba0e1e 100644
--- a/lib/appframework/controller/controller.php
+++ b/lib/appframework/controller/controller.php
@@ -24,9 +24,9 @@
namespace OC\AppFramework\Controller;
-use OC\AppFramework\Http\TemplateResponse;
use OC\AppFramework\Http\Request;
use OC\AppFramework\Core\API;
+use OCP\AppFramework\Http\TemplateResponse;
/**
@@ -133,7 +133,7 @@ abstract class Controller {
* @param string $renderAs user renders a full page, blank only your template
* admin an entry in the admin settings
* @param array $headers set additional headers in name/value pairs
- * @return \OC\AppFramework\Http\TemplateResponse containing the page
+ * @return \OCP\AppFramework\Http\TemplateResponse containing the page
*/
public function render($templateName, array $params=array(),
$renderAs='user', array $headers=array()){