Skip to content

Commit 3ddc2b3

Browse files
committed
PHPDoc
1 parent ff26aa9 commit 3ddc2b3

4 files changed

Lines changed: 6 additions & 13 deletions

File tree

include/functions.php

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,10 @@ function tag_getTagHandler()
5757
/**
5858
* Function to parse arguments for a page according to $_SERVER['REQUEST_URI']
5959
*
60-
* @var array $args_numeric array of numeric variable values
61-
* @var array $args array of indexed variables: name and value
62-
* @var array $args_string array of string variable values
6360
*
64-
* @param mixed $args_numeric
65-
* @param mixed $args
66-
* @param mixed $args_string
61+
* @param mixed $args_numeric array of numeric variable values
62+
* @param mixed $args array of indexed variables: name and value
63+
* @param mixed $args_string array of string variable values
6764
* @return bool true on args parsed
6865
*/
6966

include/onupdate.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ function xoops_module_update_tag(\XoopsModule $module, $previousVersion = null)
111111
// foreach (array_keys($GLOBALS['uploadFolders']) as $i) {
112112
foreach (array_keys($configurator->oldFolders) as $i) {
113113
$tempFolder = $GLOBALS['xoops']->path('modules/' . $moduleDirName . $configurator->oldFolders[$i]);
114-
/* @var $folderHandler XoopsObjectHandler */
114+
/* @var XoopsObjectHandler $folderHandler */
115115
$folderHandler = XoopsFile::getHandler('folder', $tempFolder);
116116
$folderHandler->delete($tempFolder);
117117
}

plugin/myalbum0.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,8 @@
3030
* uname
3131
* tags
3232
*
33-
* @var array $items associative array of items: [modid][catid][itemid]
3433
*
35-
*
36-
* @param mixed $items
34+
* @param mixed $items associative array of items: [modid][catid][itemid]
3735
* @return bool
3836
*/
3937
function myalbum0_tag_iteminfo(&$items)

plugin/smartsection.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,8 @@
3434
* uname
3535
* tags
3636
*
37-
* @var array $items associative array of items: [modid][catid][itemid]
3837
*
39-
*
40-
* @param mixed $items
38+
* @param mixed $items associative array of items: [modid][catid][itemid]
4139
* @return bool
4240
*/
4341
function smartsection_tag_iteminfo(&$items)

0 commit comments

Comments
 (0)