summaryrefslogtreecommitdiffstats
path: root/lib/public/files
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2015-01-27 16:41:43 +0100
committerVincent Petry <pvince81@owncloud.com>2015-01-27 16:41:43 +0100
commit12867b9c788487aa67ebfb4f8ee1e9997877ee69 (patch)
treecf1942afc9845ae0e9635007be2a1e377b6f46a8 /lib/public/files
parent02b9bad81b51a37dd60cab34b80796c79390c426 (diff)
downloadnextcloud-server-12867b9c788487aa67ebfb4f8ee1e9997877ee69.tar.gz
nextcloud-server-12867b9c788487aa67ebfb4f8ee1e9997877ee69.zip
Fix return type of addStorageWrapper in PHPDoc
Diffstat (limited to 'lib/public/files')
-rw-r--r--lib/public/files/storage/istoragefactory.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/files/storage/istoragefactory.php b/lib/public/files/storage/istoragefactory.php
index 48c12e44cdd..50c844af2e6 100644
--- a/lib/public/files/storage/istoragefactory.php
+++ b/lib/public/files/storage/istoragefactory.php
@@ -19,7 +19,7 @@ interface IStorageFactory {
*
* @param string $wrapperName
* @param callable $callback
- * @return true if the wrapper was added, false if there was already a wrapper with this
+ * @return bool true if the wrapper was added, false if there was already a wrapper with this
* name registered
*/
public function addStorageWrapper($wrapperName, $callback);