diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-12-09 07:32:19 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-12-09 07:32:19 +0100 |
commit | 61da3d530d489525fc0a6dd9575dc9ab37f1bc44 (patch) | |
tree | d547ad08924378cfbf492a3ef56be21ba00754a5 /lib/private/files/view.php | |
parent | 13993c4a6db83c0a637fc7c20da0470acae47208 (diff) | |
download | nextcloud-server-61da3d530d489525fc0a6dd9575dc9ab37f1bc44.tar.gz nextcloud-server-61da3d530d489525fc0a6dd9575dc9ab37f1bc44.zip |
Verify return type
Can also be null. Silences another security warning...
Diffstat (limited to 'lib/private/files/view.php')
-rw-r--r-- | lib/private/files/view.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/files/view.php b/lib/private/files/view.php index 6abefff4198..b8b1b8a50d6 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -1253,7 +1253,7 @@ class View { * @param boolean|string $includeMountPoints true to add mountpoint sizes, * 'ext' to add only ext storage mount point sizes. Defaults to true. * defaults to true - * @return \OC\Files\FileInfo|bool False if file does not exist + * @return \OC\Files\FileInfo|false False if file does not exist */ public function getFileInfo($path, $includeMountPoints = true) { $this->assertPathLength($path); |