diff options
author | Sergio Bertolin <sbertolin@solidgear.es> | 2016-12-22 11:58:36 +0000 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2016-12-23 12:25:20 +0100 |
commit | aad088f3c09e9cedc64493a3b12333330a25e9e8 (patch) | |
tree | 67457f2402d50d8fa5ed1a7da6b704dc857d3c31 | |
parent | d1b8e58c86a7d175c4383634ee342c183ffd039c (diff) | |
download | nextcloud-server-aad088f3c09e9cedc64493a3b12333330a25e9e8.tar.gz nextcloud-server-aad088f3c09e9cedc64493a3b12333330a25e9e8.zip |
Added phpdoc for getUserHome
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
-rw-r--r-- | build/integration/features/bootstrap/Provisioning.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/build/integration/features/bootstrap/Provisioning.php b/build/integration/features/bootstrap/Provisioning.php index 8a0472f81ec..0055ff15de0 100644 --- a/build/integration/features/bootstrap/Provisioning.php +++ b/build/integration/features/bootstrap/Provisioning.php @@ -704,6 +704,10 @@ trait Provisioning { $this->userHasAQuotaOf($user, 'none'); } + /** + * Returns home path of the given user + * @param string $user + */ public function getUserHome($user) { $fullUrl = $this->baseUrl . "v{$this->apiVersion}.php/cloud/users/$user"; $client = new Client(); |