diff options
author | Max Kovalenko <mxss1998@yandex.ru> | 2019-05-27 08:54:09 +0300 |
---|---|---|
committer | Max Kovalenko <mxss1998@yandex.ru> | 2019-05-27 09:04:05 +0300 |
commit | a83b79c5f8ab20ed9b4d751167417a65fa3c42b8 (patch) | |
tree | e6f97ac1b0a05b41908f11ca76e4ec0fefa7de08 /apps/files | |
parent | a8ddf3471ea054dcaa418901a20f16cc92764a61 (diff) | |
download | nextcloud-server-a83b79c5f8ab20ed9b4d751167417a65fa3c42b8.tar.gz nextcloud-server-a83b79c5f8ab20ed9b4d751167417a65fa3c42b8.zip |
misc phpdoc fixes
Signed-off-by: Max Kovalenko <mxss1998@yandex.ru>
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/lib/BackgroundJob/CleanupFileLocks.php | 1 | ||||
-rw-r--r-- | apps/files/lib/Controller/ApiController.php | 6 | ||||
-rw-r--r-- | apps/files/lib/Controller/ViewController.php | 3 |
3 files changed, 10 insertions, 0 deletions
diff --git a/apps/files/lib/BackgroundJob/CleanupFileLocks.php b/apps/files/lib/BackgroundJob/CleanupFileLocks.php index f4898b24873..df4542386e9 100644 --- a/apps/files/lib/BackgroundJob/CleanupFileLocks.php +++ b/apps/files/lib/BackgroundJob/CleanupFileLocks.php @@ -48,6 +48,7 @@ class CleanupFileLocks extends TimedJob { * Makes the background job do its work * * @param array $argument unused argument + * @throws \Exception */ public function run($argument) { $lockingProvider = \OC::$server->getLockingProvider(); diff --git a/apps/files/lib/Controller/ApiController.php b/apps/files/lib/Controller/ApiController.php index b0965d255bd..38c378d480d 100644 --- a/apps/files/lib/Controller/ApiController.php +++ b/apps/files/lib/Controller/ApiController.php @@ -242,6 +242,7 @@ class ApiController extends Controller { * @param string $mode * @param string $direction * @return Response + * @throws \OCP\PreConditionNotMetException */ public function updateFileSorting($mode, $direction) { $allowedMode = ['name', 'size', 'mtime']; @@ -262,6 +263,8 @@ class ApiController extends Controller { * @NoAdminRequired * * @param bool $show + * @return Response + * @throws \OCP\PreConditionNotMetException */ public function showHiddenFiles($show) { $this->config->setUserValue($this->userSession->getUser()->getUID(), 'files', 'show_hidden', (int)$show); @@ -274,6 +277,8 @@ class ApiController extends Controller { * @NoAdminRequired * * @param bool $show + * @return Response + * @throws \OCP\PreConditionNotMetException */ public function showGridView($show) { $this->config->setUserValue($this->userSession->getUser()->getUID(), 'files', 'show_grid', (int)$show); @@ -299,6 +304,7 @@ class ApiController extends Controller { * @param string $key the key of the folder * * @return Response + * @throws \OCP\PreConditionNotMetException */ public function toggleShowFolder(int $show, string $key) { // ensure the edited key exists diff --git a/apps/files/lib/Controller/ViewController.php b/apps/files/lib/Controller/ViewController.php index 9f9cd0b33c1..34e4427129d 100644 --- a/apps/files/lib/Controller/ViewController.php +++ b/apps/files/lib/Controller/ViewController.php @@ -135,6 +135,7 @@ class ViewController extends Controller { * * @param string $fileid * @return TemplateResponse|RedirectResponse + * @throws NotFoundException */ public function showFile(string $fileid = null): Response { // This is the entry point from the `/f/{fileid}` URL which is hardcoded in the server. @@ -148,7 +149,9 @@ class ViewController extends Controller { * @param string $dir * @param string $view * @param string $fileid + * @param bool $fileNotFound * @return TemplateResponse|RedirectResponse + * @throws NotFoundException */ public function index($dir = '', $view = '', $fileid = null, $fileNotFound = false) { if ($fileid !== null) { |