]> source.dussan.org Git - nextcloud-server.git/commitdiff
Add PHPDoc
authorMorris Jobke <hey@morrisjobke.de>
Mon, 1 May 2017 21:35:47 +0000 (18:35 -0300)
committerRobin Appelman <robin@icewind.nl>
Tue, 2 May 2017 11:43:47 +0000 (13:43 +0200)
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
lib/private/Preview/Generator.php
lib/private/PreviewManager.php
lib/public/IPreview.php

index 0fb284259aa8bf477d5e4d256f9d1f2d0261a092..5a264c2bbd5432b34034e19385f422a4e4339ec8 100644 (file)
@@ -84,6 +84,7 @@ class Generator {
         * @param string $mimeType
         * @return ISimpleFile
         * @throws NotFoundException
+        * @throws \InvalidArgumentException if the preview would be invalid (in case the original image is invalid)
         */
        public function getPreview(File $file, $width = -1, $height = -1, $crop = false, $mode = IPreview::MODE_FILL, $mimeType = null) {
                $this->eventDispatcher->dispatch(
@@ -299,6 +300,7 @@ class Generator {
         * @param int $maxHeight
         * @return ISimpleFile
         * @throws NotFoundException
+        * @throws \InvalidArgumentException if the preview would be invalid (in case the original image is invalid)
         */
        private function generatePreview(ISimpleFolder $previewFolder, ISimpleFile $maxPreview, $width, $height, $crop, $maxWidth, $maxHeight) {
                $preview = $this->helper->getImage($maxPreview);
index 8c5a7ad29f1aa9f862c70b6cec0b940bd60fd58c..12fcc292c6399e9477f10e52081f996e5dbe0cc2 100644 (file)
@@ -182,7 +182,8 @@ class PreviewManager implements IPreview {
         * @param string $mimeType
         * @return ISimpleFile
         * @throws NotFoundException
-        * @since 11.0.0
+        * @throws \InvalidArgumentException if the preview would be invalid (in case the original image is invalid)
+        * @since 11.0.0 - \InvalidArgumentException was added in 12.0.0
         */
        public function getPreview(File $file, $width = -1, $height = -1, $crop = false, $mode = IPreview::MODE_FILL, $mimeType = null) {
                if ($this->generator === null) {
index 207539b1170f95d285d73baa57ff80b822c6116c..7705df61a170b7d840acf95fd5646d53c6c468ef 100644 (file)
@@ -104,7 +104,8 @@ interface IPreview {
         * @param string $mimeType To force a given mimetype for the file (files_versions needs this)
         * @return ISimpleFile
         * @throws NotFoundException
-        * @since 11.0.0
+        * @throws \InvalidArgumentException if the preview would be invalid (in case the original image is invalid)
+        * @since 11.0.0 - \InvalidArgumentException was added in 12.0.0
         */
        public function getPreview(File $file, $width = -1, $height = -1, $crop = false, $mode = IPreview::MODE_FILL, $mimeType = null);