@@ -28,7 +28,7 @@ |
||
28 | 28 | /** |
29 | 29 | * @param string $sUrl |
30 | 30 | * |
31 | - * @return string|bool Returns the embed video URL if found, FALSE otherwise. |
|
31 | + * @return false|string Returns the embed video URL if found, FALSE otherwise. |
|
32 | 32 | */ |
33 | 33 | public function getVideo($sUrl) |
34 | 34 | { |
@@ -474,6 +474,7 @@ |
||
474 | 474 | |
475 | 475 | /** |
476 | 476 | * Return path to ckeditor.js. |
477 | + * @return string |
|
477 | 478 | */ |
478 | 479 | private function ckeditorPath() |
479 | 480 | { |
@@ -457,6 +457,7 @@ discard block |
||
457 | 457 | * |
458 | 458 | * @param int iProfileId |
459 | 459 | * @param int $iStatus Values: 0 = Offline, 1 = Online, 2 = Busy, 3 = Away |
460 | + * @param integer $iProfileId |
|
460 | 461 | * |
461 | 462 | * @return void |
462 | 463 | */ |
@@ -1061,7 +1062,7 @@ discard block |
||
1061 | 1062 | * @param int $iOffset |
1062 | 1063 | * @param int $iLimit |
1063 | 1064 | * |
1064 | - * @return array|stdClass|int Object with the users list returned or integer for the total number users returned. |
|
1065 | + * @return integer Object with the users list returned or integer for the total number users returned. |
|
1065 | 1066 | */ |
1066 | 1067 | public function getGeoProfiles($sCountryCode, $sCity, $bCount, $sOrder, $iOffset = null, $iLimit = null) |
1067 | 1068 | { |
@@ -1373,7 +1374,7 @@ discard block |
||
1373 | 1374 | * |
1374 | 1375 | * @param int $iGroupId Group ID. Select only the specific membership from a group ID. |
1375 | 1376 | * |
1376 | - * @return stdClass|array The membership(s) data. |
|
1377 | + * @return string The membership(s) data. |
|
1377 | 1378 | */ |
1378 | 1379 | public function getMemberships($iGroupId = null) |
1379 | 1380 | { |
@@ -381,6 +381,9 @@ |
||
381 | 381 | ); |
382 | 382 | } |
383 | 383 | |
384 | + /** |
|
385 | + * @param integer $iStatus |
|
386 | + */ |
|
384 | 387 | private function moderateRegistration($iId, $iStatus) |
385 | 388 | { |
386 | 389 | if (isset($iId, $iStatus)) { |
@@ -17,7 +17,6 @@ |
||
17 | 17 | /** |
18 | 18 | * Emit a signal. |
19 | 19 | * |
20 | - * @param mixed $mVar [, string $... ] |
|
21 | 20 | * |
22 | 21 | * @return string |
23 | 22 | */ |
@@ -81,7 +81,7 @@ |
||
81 | 81 | } |
82 | 82 | |
83 | 83 | /** |
84 | - * @return int |
|
84 | + * @return string |
|
85 | 85 | */ |
86 | 86 | private function getProfileId() |
87 | 87 | { |
@@ -68,7 +68,7 @@ |
||
68 | 68 | } |
69 | 69 | |
70 | 70 | /** |
71 | - * @return string The request body content (usually, should be a JSON string). |
|
71 | + * @return resource The request body content (usually, should be a JSON string). |
|
72 | 72 | */ |
73 | 73 | public function getBody() |
74 | 74 | { |
@@ -64,7 +64,7 @@ |
||
64 | 64 | * @param int $iHeight |
65 | 65 | * @param bool $bOnlyActive |
66 | 66 | * |
67 | - * @return bool|void |
|
67 | + * @return false|null |
|
68 | 68 | */ |
69 | 69 | public function ad($iWidth, $iHeight, $bOnlyActive = true) |
70 | 70 | { |
@@ -60,6 +60,9 @@ discard block |
||
60 | 60 | $this->sRoutePath = PH7_PATH_APP_CONFIG . 'routes/' . $this->sDefLangRoute . '.xml'; |
61 | 61 | } |
62 | 62 | |
63 | + /** |
|
64 | + * @param string $sModsDirModFolder |
|
65 | + */ |
|
63 | 66 | public function setPath($sModsDirModFolder) |
64 | 67 | { |
65 | 68 | $this->sModsDirModFolder = $sModsDirModFolder; |
@@ -278,7 +281,7 @@ discard block |
||
278 | 281 | * |
279 | 282 | * @param string $sSwitch The check constant. |
280 | 283 | * |
281 | - * @return string Returns the constant if it is correct, otherwise an error message with exit() function. |
|
284 | + * @return integer|null Returns the constant if it is correct, otherwise an error message with exit() function. |
|
282 | 285 | */ |
283 | 286 | private function checkParam($sSwitch) |
284 | 287 | { |