@@ -67,9 +67,9 @@ discard block |
||
67 | 67 | /** |
68 | 68 | * Constructor |
69 | 69 | * @param $title |
70 | - * @param $modid |
|
71 | - * @param $permname |
|
72 | - * @param $permdesc |
|
70 | + * @param integer $modid |
|
71 | + * @param string $permname |
|
72 | + * @param string $permdesc |
|
73 | 73 | */ |
74 | 74 | public function __construct($title, $modid, $permname, $permdesc) |
75 | 75 | { |
@@ -102,9 +102,9 @@ discard block |
||
102 | 102 | * Add appendix |
103 | 103 | * |
104 | 104 | * @access public |
105 | - * @param $permName |
|
105 | + * @param string $permName |
|
106 | 106 | * @param $itemId |
107 | - * @param $itemName |
|
107 | + * @param string $itemName |
|
108 | 108 | */ |
109 | 109 | public function addAppendix($permName, $itemId, $itemName) |
110 | 110 | { |
@@ -254,7 +254,7 @@ discard block |
||
254 | 254 | /** |
255 | 255 | * Constructor |
256 | 256 | * @param $caption |
257 | - * @param $name |
|
257 | + * @param string $name |
|
258 | 258 | * @param $groupId |
259 | 259 | * @param null $values |
260 | 260 | */ |
@@ -26,7 +26,7 @@ |
||
26 | 26 | |
27 | 27 | // -- Edit function -- // |
28 | 28 | /** |
29 | - * @param string $articleID |
|
29 | + * @param integer $articleID |
|
30 | 30 | */ |
31 | 31 | function editarticle($articleID = '') |
32 | 32 | { |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | * create a new Column |
86 | 86 | * |
87 | 87 | * @param bool $isNew |
88 | - * @return object SoapboxSbcolumns reference to the new Column |
|
88 | + * @return SoapboxSbcolumns SoapboxSbcolumns reference to the new Column |
|
89 | 89 | */ |
90 | 90 | public function &createColumn($isNew = true) |
91 | 91 | { |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | * create a new Votedata |
99 | 99 | * |
100 | 100 | * @param bool $isNew |
101 | - * @return object SoapboxSbvotedata reference to the new Votedata |
|
101 | + * @return SoapboxSbvotedata SoapboxSbvotedata reference to the new Votedata |
|
102 | 102 | */ |
103 | 103 | public function &createVotedata($isNew = true) |
104 | 104 | { |
@@ -129,7 +129,7 @@ discard block |
||
129 | 129 | /** |
130 | 130 | * insert a new Column in the database |
131 | 131 | * |
132 | - * @param object $sbcolumn reference to the {@link SoapboxSbcolumns} object |
|
132 | + * @param SoapboxSbcolumns $sbcolumn reference to the {@link SoapboxSbcolumns} object |
|
133 | 133 | * @param bool $force |
134 | 134 | * @return bool FALSE if failed, TRUE if already present and unchanged or successful |
135 | 135 | */ |
@@ -325,7 +325,7 @@ discard block |
||
325 | 325 | /** |
326 | 326 | * updates a single field in a Column record |
327 | 327 | * |
328 | - * @param object $sbcolumns reference to the {@link SoapboxSbcolumns} object |
|
328 | + * @param SoapboxSbcolumns $sbcolumns reference to the {@link SoapboxSbcolumns} object |
|
329 | 329 | * @param string $fieldName name of the field to update |
330 | 330 | * @param string $fieldValue updated value for the field |
331 | 331 | * @return bool TRUE if success or unchanged, FALSE on failure |
@@ -412,7 +412,7 @@ |
||
412 | 412 | * create a new entry |
413 | 413 | * |
414 | 414 | * @param bool $isNew flag the new objects as "new"? |
415 | - * @return object SoapboxSbarticles |
|
415 | + * @return SoapboxSbarticles SoapboxSbarticles |
|
416 | 416 | */ |
417 | 417 | public function &create($isNew = true) |
418 | 418 | { |
@@ -283,7 +283,7 @@ discard block |
||
283 | 283 | * create a new category |
284 | 284 | * |
285 | 285 | * @param bool $isNew flag the new objects as "new"? |
286 | - * @return object SoapboxSbcolumns |
|
286 | + * @return SoapboxSbcolumns SoapboxSbcolumns |
|
287 | 287 | */ |
288 | 288 | public function &create($isNew = true) |
289 | 289 | { |
@@ -298,7 +298,7 @@ discard block |
||
298 | 298 | /** |
299 | 299 | * retrieve a category |
300 | 300 | * |
301 | - * @param mixed|null $id |
|
301 | + * @param integer $id |
|
302 | 302 | * @return mixed reference to the {@link SoapboxSbcolumns} object, FALSE if failed |
303 | 303 | * object, FALSE if failed |
304 | 304 | * @internal param int $columnID columnID of the category |
@@ -281,7 +281,7 @@ discard block |
||
281 | 281 | * create a new entry |
282 | 282 | * |
283 | 283 | * @param bool $isNew flag the new objects as "new"? |
284 | - * @return object SoapboxSbvotedata |
|
284 | + * @return SoapboxSbvotedata SoapboxSbvotedata |
|
285 | 285 | */ |
286 | 286 | public function &create($isNew = true) |
287 | 287 | { |
@@ -296,7 +296,7 @@ discard block |
||
296 | 296 | /** |
297 | 297 | * retrieve a entry |
298 | 298 | * |
299 | - * @param mixed|null $id |
|
299 | + * @param integer $id |
|
300 | 300 | * @return mixed reference to the {@link Entry} object, FALSE if failed |
301 | 301 | * object, FALSE if failed |
302 | 302 | * @internal param int $ratingid ratingid of the entry |