diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-10-04 16:28:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-04 16:28:08 +0200 |
commit | e0ed64366c0a6ddb68ebbc9ff3639257aab74d7e (patch) | |
tree | 175389227dc70f605ce3f7e624b74df46149d6b7 /lib/private/legacy/util.php | |
parent | bfa870d8034ec8b16c4c92924def4c9534ddc6fb (diff) | |
parent | 1d4a80f37dd44caf56aecf79d53456d55cf4883a (diff) | |
download | nextcloud-server-e0ed64366c0a6ddb68ebbc9ff3639257aab74d7e.tar.gz nextcloud-server-e0ed64366c0a6ddb68ebbc9ff3639257aab74d7e.zip |
Merge pull request #11613 from nextcloud/add-missing-throw-statement
add missing throw statement to doc block
Diffstat (limited to 'lib/private/legacy/util.php')
-rw-r--r-- | lib/private/legacy/util.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/private/legacy/util.php b/lib/private/legacy/util.php index 1f3019f65dd..f3c6cb7e363 100644 --- a/lib/private/legacy/util.php +++ b/lib/private/legacy/util.php @@ -392,7 +392,8 @@ class OC_Util { * * @param String $userId * @param \OCP\Files\Folder $userDirectory - * @throws \RuntimeException + * @throws \OCP\Files\NotFoundException + * @throws \OCP\Files\NotPermittedException * @suppress PhanDeprecatedFunction */ public static function copySkeleton($userId, \OCP\Files\Folder $userDirectory) { |