From 90a4cc319f6b01f5b08f451a10ae54c87d8a80e4 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Mon, 1 Mar 2010 21:36:57 +0000 Subject: [PATCH] Fixed some doxygen warnings --- includes/ImageGallery.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/includes/ImageGallery.php b/includes/ImageGallery.php index 5bff0ae335..c76c8e5779 100644 --- a/includes/ImageGallery.php +++ b/includes/ImageGallery.php @@ -83,7 +83,7 @@ class ImageGallery /** * Set how many images will be displayed per row. * - * @param int $num > 0; invalid numbers will be rejected + * @param $num Integer > 0; invalid numbers will be rejected */ public function setPerRow( $num ) { if ($num > 0) { @@ -94,7 +94,7 @@ class ImageGallery /** * Set how wide each image will be, in pixels. * - * @param int $num > 0; invalid numbers will be ignored + * @param $num Integer > 0; invalid numbers will be ignored */ public function setWidths( $num ) { if ($num > 0) { @@ -105,7 +105,7 @@ class ImageGallery /** * Set how high each image will be, in pixels. * - * @param int $num > 0; invalid numbers will be ignored + * @param $num Integer > 0; invalid numbers will be ignored */ public function setHeights( $num ) { if ($num > 0) { @@ -201,7 +201,7 @@ class ImageGallery * Note -- if taking from user input, you should probably run through * Sanitizer::validateAttributes() first. * - * @param array of HTML attribute pairs + * @param $attribs Array of HTML attribute pairs */ function setAttributes( $attribs ) { $this->mAttribs = $attribs; @@ -343,7 +343,7 @@ class ImageGallery } /** - * @return int Number of images in the gallery + * @return Integer: number of images in the gallery */ public function count() { return count( $this->mImages ); @@ -352,7 +352,7 @@ class ImageGallery /** * Set the contextual title * - * @param Title $title Contextual title + * @param $title Title: contextual title */ public function setContextTitle( $title ) { $this->contextTitle = $title; -- 2.20.1