@@ -309,7 +309,7 @@ discard block |
||
| 309 | 309 | /** |
| 310 | 310 | * Image_Transform_Driver_NetPBM::_postProcess() |
| 311 | 311 | * |
| 312 | - * @param $type |
|
| 312 | + * @param string $type |
|
| 313 | 313 | * @param $quality |
| 314 | 314 | * @return string A chain of shell command |
| 315 | 315 | * @link http://netpbm.sourceforge.net/doc/directory.html |
@@ -471,7 +471,7 @@ discard block |
||
| 471 | 471 | * |
| 472 | 472 | * @param string $type (jpeg,png...); |
| 473 | 473 | * @param int $quality 75 |
| 474 | - * @return TRUE or PEAR Error object on error |
|
| 474 | + * @return boolean or PEAR Error object on error |
|
| 475 | 475 | */ |
| 476 | 476 | public function display($type = null, $quality = null) |
| 477 | 477 | { |
@@ -196,7 +196,7 @@ discard block |
||
| 196 | 196 | * Supports multiple files and dirs and also recursive deletes |
| 197 | 197 | * |
| 198 | 198 | * @param string $args the arguments for rm |
| 199 | - * @return mixed PEAR_Error or true for success |
|
| 199 | + * @return boolean PEAR_Error or true for success |
|
| 200 | 200 | * @static |
| 201 | 201 | * @access public |
| 202 | 202 | */ |
@@ -388,7 +388,7 @@ discard block |
||
| 388 | 388 | * c:\windows\temp or /tmp will be used. |
| 389 | 389 | * |
| 390 | 390 | * @param string $args The arguments |
| 391 | - * @return mixed the full path of the created (file|dir) or false |
|
| 391 | + * @return boolean|string the full path of the created (file|dir) or false |
|
| 392 | 392 | * @see System::tmpdir() |
| 393 | 393 | * @static |
| 394 | 394 | * @access public |
@@ -496,7 +496,7 @@ discard block |
||
| 496 | 496 | * @param string $program The command to search for |
| 497 | 497 | * @param mixed $fallback Value to return if $program is not found |
| 498 | 498 | * |
| 499 | - * @return mixed A string with the full path or false if not found |
|
| 499 | + * @return string A string with the full path or false if not found |
|
| 500 | 500 | * @static |
| 501 | 501 | * @author Stig Bakken <[email protected]> |
| 502 | 502 | */ |
@@ -81,7 +81,7 @@ discard block |
||
| 81 | 81 | |
| 82 | 82 | /** |
| 83 | 83 | * @param $db |
| 84 | - * @param $type |
|
| 84 | + * @param string $type |
|
| 85 | 85 | */ |
| 86 | 86 | public function __construct(XoopsDatabase $db, $type) |
| 87 | 87 | { |
@@ -509,7 +509,7 @@ discard block |
||
| 509 | 509 | } |
| 510 | 510 | |
| 511 | 511 | /** |
| 512 | - * @param $photoName |
|
| 512 | + * @param string $photoName |
|
| 513 | 513 | */ |
| 514 | 514 | public function _largePhotoTreatment($photoName) |
| 515 | 515 | { |
@@ -548,7 +548,7 @@ discard block |
||
| 548 | 548 | } |
| 549 | 549 | |
| 550 | 550 | /** |
| 551 | - * @param $photoName |
|
| 551 | + * @param string $photoName |
|
| 552 | 552 | * @param null $filePath |
| 553 | 553 | * @param null $mediumFilePath |
| 554 | 554 | */ |
@@ -631,7 +631,7 @@ discard block |
||
| 631 | 631 | } |
| 632 | 632 | |
| 633 | 633 | /** |
| 634 | - * @param $photoName |
|
| 634 | + * @param string $photoName |
|
| 635 | 635 | * |
| 636 | 636 | * @return array |
| 637 | 637 | */ |
@@ -661,7 +661,7 @@ discard block |
||
| 661 | 661 | } |
| 662 | 662 | |
| 663 | 663 | /** |
| 664 | - * @param $photoName |
|
| 664 | + * @param string $photoName |
|
| 665 | 665 | * |
| 666 | 666 | * @return string |
| 667 | 667 | */ |
@@ -710,7 +710,7 @@ discard block |
||
| 710 | 710 | } |
| 711 | 711 | |
| 712 | 712 | /** |
| 713 | - * @param $photoName |
|
| 713 | + * @param string $photoName |
|
| 714 | 714 | * |
| 715 | 715 | * @return float |
| 716 | 716 | */ |
@@ -871,14 +871,14 @@ discard block |
||
| 871 | 871 | } |
| 872 | 872 | |
| 873 | 873 | /** |
| 874 | - * @param $catId |
|
| 874 | + * @param integer $catId |
|
| 875 | 875 | * @param $dirtyPhotoName |
| 876 | 876 | * @param string $photoTitle |
| 877 | 877 | * @param string $photoDesc |
| 878 | 878 | * @param string $photoExtra |
| 879 | 879 | * @param string $photoTag |
| 880 | 880 | * |
| 881 | - * @return mixed |
|
| 881 | + * @return boolean |
|
| 882 | 882 | */ |
| 883 | 883 | public function addLocalPhoto($catId, $dirtyPhotoName, $photoTitle = '', $photoDesc = '', $photoExtra = '', $photoTag = '') |
| 884 | 884 | { |
@@ -169,7 +169,7 @@ |
||
| 169 | 169 | } |
| 170 | 170 | |
| 171 | 171 | /** |
| 172 | - * @param $tmpDestination |
|
| 172 | + * @param string $tmpDestination |
|
| 173 | 173 | * @param $fileName |
| 174 | 174 | * |
| 175 | 175 | * @return bool |
@@ -120,7 +120,7 @@ discard block |
||
| 120 | 120 | } |
| 121 | 121 | |
| 122 | 122 | /** |
| 123 | - * @param $iWidth |
|
| 123 | + * @param integer $iWidth |
|
| 124 | 124 | */ |
| 125 | 125 | public function SetWidth($iWidth) |
| 126 | 126 | { |
@@ -132,7 +132,7 @@ discard block |
||
| 132 | 132 | } |
| 133 | 133 | |
| 134 | 134 | /** |
| 135 | - * @param $iHeight |
|
| 135 | + * @param integer $iHeight |
|
| 136 | 136 | */ |
| 137 | 137 | public function SetHeight($iHeight) |
| 138 | 138 | { |
@@ -143,7 +143,7 @@ discard block |
||
| 143 | 143 | } |
| 144 | 144 | |
| 145 | 145 | /** |
| 146 | - * @param $iNumChars |
|
| 146 | + * @param integer $iNumChars |
|
| 147 | 147 | */ |
| 148 | 148 | public function SetNumChars($iNumChars) |
| 149 | 149 | { |
@@ -152,7 +152,7 @@ discard block |
||
| 152 | 152 | } |
| 153 | 153 | |
| 154 | 154 | /** |
| 155 | - * @param $iNumLines |
|
| 155 | + * @param integer $iNumLines |
|
| 156 | 156 | */ |
| 157 | 157 | public function SetNumLines($iNumLines) |
| 158 | 158 | { |
@@ -160,7 +160,7 @@ discard block |
||
| 160 | 160 | } |
| 161 | 161 | |
| 162 | 162 | /** |
| 163 | - * @param $bCharShadow |
|
| 163 | + * @param boolean $bCharShadow |
|
| 164 | 164 | */ |
| 165 | 165 | public function DisplayShadow($bCharShadow) |
| 166 | 166 | { |
@@ -168,7 +168,7 @@ discard block |
||
| 168 | 168 | } |
| 169 | 169 | |
| 170 | 170 | /** |
| 171 | - * @param $sOwnerText |
|
| 171 | + * @param string $sOwnerText |
|
| 172 | 172 | */ |
| 173 | 173 | public function SetOwnerText($sOwnerText) |
| 174 | 174 | { |
@@ -176,7 +176,7 @@ discard block |
||
| 176 | 176 | } |
| 177 | 177 | |
| 178 | 178 | /** |
| 179 | - * @param $vCharSet |
|
| 179 | + * @param string $vCharSet |
|
| 180 | 180 | */ |
| 181 | 181 | public function SetCharSet($vCharSet) |
| 182 | 182 | { |
@@ -215,7 +215,7 @@ discard block |
||
| 215 | 215 | } |
| 216 | 216 | |
| 217 | 217 | /** |
| 218 | - * @param $bCaseInsensitive |
|
| 218 | + * @param boolean $bCaseInsensitive |
|
| 219 | 219 | */ |
| 220 | 220 | public function CaseInsensitive($bCaseInsensitive) |
| 221 | 221 | { |
@@ -223,7 +223,7 @@ discard block |
||
| 223 | 223 | } |
| 224 | 224 | |
| 225 | 225 | /** |
| 226 | - * @param $vBackgroundImages |
|
| 226 | + * @param string $vBackgroundImages |
|
| 227 | 227 | */ |
| 228 | 228 | public function SetBackgroundImages($vBackgroundImages) |
| 229 | 229 | { |
@@ -231,7 +231,7 @@ discard block |
||
| 231 | 231 | } |
| 232 | 232 | |
| 233 | 233 | /** |
| 234 | - * @param $iMinFontSize |
|
| 234 | + * @param integer $iMinFontSize |
|
| 235 | 235 | */ |
| 236 | 236 | public function SetMinFontSize($iMinFontSize) |
| 237 | 237 | { |
@@ -239,7 +239,7 @@ discard block |
||
| 239 | 239 | } |
| 240 | 240 | |
| 241 | 241 | /** |
| 242 | - * @param $iMaxFontSize |
|
| 242 | + * @param integer $iMaxFontSize |
|
| 243 | 243 | */ |
| 244 | 244 | public function SetMaxFontSize($iMaxFontSize) |
| 245 | 245 | { |
@@ -247,7 +247,7 @@ discard block |
||
| 247 | 247 | } |
| 248 | 248 | |
| 249 | 249 | /** |
| 250 | - * @param $bUseColour |
|
| 250 | + * @param boolean $bUseColour |
|
| 251 | 251 | */ |
| 252 | 252 | public function UseColour($bUseColour) |
| 253 | 253 | { |
@@ -255,7 +255,7 @@ discard block |
||
| 255 | 255 | } |
| 256 | 256 | |
| 257 | 257 | /** |
| 258 | - * @param $sFileType |
|
| 258 | + * @param string $sFileType |
|
| 259 | 259 | */ |
| 260 | 260 | public function SetFileType($sFileType) |
| 261 | 261 | { |
@@ -381,7 +381,7 @@ discard block |
||
| 381 | 381 | } |
| 382 | 382 | |
| 383 | 383 | /** |
| 384 | - * @param $sFilename |
|
| 384 | + * @param string $sFilename |
|
| 385 | 385 | */ |
| 386 | 386 | public function WriteFile($sFilename) |
| 387 | 387 | { |
@@ -514,7 +514,7 @@ discard block |
||
| 514 | 514 | } |
| 515 | 515 | |
| 516 | 516 | /** |
| 517 | - * @param $sFlitePath |
|
| 517 | + * @param string $sFlitePath |
|
| 518 | 518 | */ |
| 519 | 519 | public function SetFlitePath($sFlitePath) |
| 520 | 520 | { |
@@ -522,7 +522,7 @@ discard block |
||
| 522 | 522 | } |
| 523 | 523 | |
| 524 | 524 | /** |
| 525 | - * @param $sAudioPath |
|
| 525 | + * @param string $sAudioPath |
|
| 526 | 526 | */ |
| 527 | 527 | public function SetAudioPath($sAudioPath) |
| 528 | 528 | { |
@@ -2,7 +2,7 @@ |
||
| 2 | 2 | /** |
| 3 | 3 | * @param $items |
| 4 | 4 | * |
| 5 | - * @return bool |
|
| 5 | + * @return false|null |
|
| 6 | 6 | */ |
| 7 | 7 | function extgallery_tag_iteminfo(&$items) |
| 8 | 8 | { |
@@ -77,7 +77,7 @@ |
||
| 77 | 77 | /** |
| 78 | 78 | * @param $data |
| 79 | 79 | * |
| 80 | - * @return bool |
|
| 80 | + * @return false|null |
|
| 81 | 81 | */ |
| 82 | 82 | public function createEcard($data) |
| 83 | 83 | { |
@@ -14,7 +14,7 @@ |
||
| 14 | 14 | * @author Zoullou (http://www.zoullou.net) |
| 15 | 15 | * @package ExtGallery |
| 16 | 16 | * @version $Id: functions.php 8088 2011-11-06 09:38:12Z beckmi $ |
| 17 | - * @param $option |
|
| 17 | + * @param string $option |
|
| 18 | 18 | * @return bool |
| 19 | 19 | */ |
| 20 | 20 | |
@@ -14,7 +14,7 @@ |
||
| 14 | 14 | * and if so, the name to use for the setting in the Javascript parameters |
| 15 | 15 | * |
| 16 | 16 | * @param $param |
| 17 | - * @return false or parameter name (parameter supported) |
|
| 17 | + * @return string|false or parameter name (parameter supported) |
|
| 18 | 18 | */ |
| 19 | 19 | protected function get_param($param) |
| 20 | 20 | { |