diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2015-03-12 11:57:56 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2015-03-16 12:44:11 +0100 |
commit | 227ff0a9e3a3106e58a352fe1fb1d5c7e01d3c28 (patch) | |
tree | 88a95150d9465ba526b0ebf603958f5a1bf86f4b /lib/public | |
parent | 0b37d5aea3c1bf4a30dece3ab7dfe838f50d36f2 (diff) | |
download | nextcloud-server-227ff0a9e3a3106e58a352fe1fb1d5c7e01d3c28.tar.gz nextcloud-server-227ff0a9e3a3106e58a352fe1fb1d5c7e01d3c28.zip |
Clean up some docs
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/ipreview.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/public/ipreview.php b/lib/public/ipreview.php index 4a45fa29085..e1562bce58f 100644 --- a/lib/public/ipreview.php +++ b/lib/public/ipreview.php @@ -69,7 +69,7 @@ interface IPreview { * @param boolean $scaleUp Scale smaller images up to the thumbnail size or not. Might look ugly * @return \OCP\Image */ - function createPreview($file, $maxX = 100, $maxY = 75, $scaleUp = false); + public function createPreview($file, $maxX = 100, $maxY = 75, $scaleUp = false); /** @@ -77,7 +77,7 @@ interface IPreview { * @param string $mimeType * @return boolean */ - function isMimeSupported($mimeType = '*'); + public function isMimeSupported($mimeType = '*'); /** * Check if a preview can be generated for a file @@ -85,5 +85,5 @@ interface IPreview { * @param \OCP\Files\FileInfo $file * @return bool */ - function isAvailable($file); + public function isAvailable(\OCP\Files\FileInfo $file); } |