]> source.dussan.org Git - nextcloud-server.git/commitdiff
properly include class
authorMorris Jobke <hey@morrisjobke.de>
Tue, 21 Feb 2017 23:24:40 +0000 (17:24 -0600)
committerMorris Jobke <hey@morrisjobke.de>
Tue, 21 Feb 2017 23:24:40 +0000 (17:24 -0600)
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
apps/files_sharing/lib/Controller/ShareesAPIController.php

index 73f804faaceb22187aea0dbe1e95b19c3b2248aa..838dd1adf9b4f9ab4fc236cadcfaa50e577879d2 100644 (file)
@@ -24,7 +24,7 @@
  */
 namespace OCA\Files_Sharing\Controller;
 
-use OCP\AppFramework\Http;
+use OCP\AppFramework\Http\DataResponse;
 use OCP\AppFramework\OCS\OCSBadRequestException;
 use OCP\AppFramework\OCSController;
 use OCP\Contacts\IManager;
@@ -409,7 +409,7 @@ class ShareesAPIController extends OCSController {
         * @param int $perPage
         * @param int|int[] $shareType
         * @param bool $lookup
-        * @return Http\DataResponse
+        * @return DataResponse
         * @throws OCSBadRequestException
         */
        public function search($search = '', $itemType = null, $page = 1, $perPage = 200, $shareType = null, $lookup = true) {
@@ -417,7 +417,7 @@ class ShareesAPIController extends OCSController {
                // only search for string larger than a given threshold
                $threshold = intval($this->config->getSystemValue('sharing.minSearchStringLength', 0));
                if (strlen($search) < $threshold) {
-                       return new Http\DataResponse($this->result);
+                       return new DataResponse($this->result);
                }
 
                // never return more than the max. number of results configured in the config.php
@@ -493,7 +493,7 @@ class ShareesAPIController extends OCSController {
         * @param int $page
         * @param int $perPage
         * @param bool $lookup
-        * @return Http\DataResponse
+        * @return DataResponse
         * @throws OCSBadRequestException
         */
        protected function searchSharees($search, $itemType, array $shareTypes, $page, $perPage, $lookup) {
@@ -545,7 +545,7 @@ class ShareesAPIController extends OCSController {
                        $this->result['exact']['emails'] = $mailResults['exact'];
                }
 
-               $response = new Http\DataResponse($this->result);
+               $response = new DataResponse($this->result);
 
                if (sizeof($this->reachedEndFor) < 3) {
                        $response->addHeader('Link', $this->getPaginationLink($page, [