diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-11-14 21:37:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-14 21:37:26 +0100 |
commit | 299c280fb931f3ff98da30f9fd29213bd52eb106 (patch) | |
tree | 08235637f6e4c266d9122941303eee583c190c57 | |
parent | 08bd8373f66a3697835f3b35cfa9e10bf759bae6 (diff) | |
parent | c126c3f56a423783bf95d26816327b4e76ef053a (diff) | |
download | nextcloud-server-299c280fb931f3ff98da30f9fd29213bd52eb106.tar.gz nextcloud-server-299c280fb931f3ff98da30f9fd29213bd52eb106.zip |
Merge pull request #12457 from nextcloud/fix/noid/fix-phpdoc
Update PHPDoc to fix typos
-rw-r--r-- | apps/files/lib/Controller/ApiController.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/files/lib/Controller/ApiController.php b/apps/files/lib/Controller/ApiController.php index 3085b72ac7a..a967c8bd7bb 100644 --- a/apps/files/lib/Controller/ApiController.php +++ b/apps/files/lib/Controller/ApiController.php @@ -320,8 +320,9 @@ class ApiController extends Controller { * * @NoAdminRequired * - * @param String - * @return String + * @param string + * @return string + * @throws \OCP\Files\NotFoundException */ public function getNodeType($folderpath) { $node = $this->userFolder->get($folderpath); |