@@ -388,6 +388,7 @@ |
||
| 388 | 388 | /** |
| 389 | 389 | * Is $c a letter, digit, underscore, dollar sign, or non-ASCII character. |
| 390 | 390 | * |
| 391 | + * @param string $c |
|
| 391 | 392 | * @return bool |
| 392 | 393 | */ |
| 393 | 394 | protected function isAlphaNum($c) |
@@ -32,7 +32,7 @@ discard block |
||
| 32 | 32 | * |
| 33 | 33 | * @param string $sVar |
| 34 | 34 | * |
| 35 | - * @return The new parsed text |
|
| 35 | + * @return string new parsed text |
|
| 36 | 36 | */ |
| 37 | 37 | public function parse($sVar) |
| 38 | 38 | { |
@@ -92,7 +92,7 @@ discard block |
||
| 92 | 92 | } |
| 93 | 93 | |
| 94 | 94 | /** |
| 95 | - * @return bool |
|
| 95 | + * @return integer |
|
| 96 | 96 | */ |
| 97 | 97 | private function notParsingVars() |
| 98 | 98 | { |
@@ -316,7 +316,7 @@ |
||
| 316 | 316 | /** |
| 317 | 317 | * Check if Apache's mod_rewrite is installed. |
| 318 | 318 | * |
| 319 | - * @return bool |
|
| 319 | + * @return null|boolean |
|
| 320 | 320 | */ |
| 321 | 321 | function is_url_rewrite() |
| 322 | 322 | { |
@@ -25,7 +25,7 @@ |
||
| 25 | 25 | * @param string $sMod |
| 26 | 26 | * @param bool $bPrint Print or Return the HTML code. |
| 27 | 27 | * |
| 28 | - * @return void |
|
| 28 | + * @return string|null |
|
| 29 | 29 | */ |
| 30 | 30 | public static function link($sMod, $bPrint = true) |
| 31 | 31 | { |
@@ -84,7 +84,7 @@ |
||
| 84 | 84 | * @param string $sApiParams Parameters to send to the API. |
| 85 | 85 | * @param string $sApiVersion Version of the API it will use. If fails from the API server, it will ignore it. |
| 86 | 86 | * |
| 87 | - * @return void |
|
| 87 | + * @return string|boolean |
|
| 88 | 88 | */ |
| 89 | 89 | private function getApiResults($sApiUrl, $sApiParams, $sApiVersion) |
| 90 | 90 | { |
@@ -162,7 +162,7 @@ |
||
| 162 | 162 | /** |
| 163 | 163 | * @param stdClass $oProfile |
| 164 | 164 | * |
| 165 | - * @return bool |
|
| 165 | + * @return string |
|
| 166 | 166 | */ |
| 167 | 167 | private function getBirthDate(stdClass $oProfile) |
| 168 | 168 | { |
@@ -118,7 +118,7 @@ discard block |
||
| 118 | 118 | /** |
| 119 | 119 | * Authenticate user with Twitter. |
| 120 | 120 | * |
| 121 | - * @return bool Authentication successful. |
|
| 121 | + * @return boolean|null Authentication successful. |
|
| 122 | 122 | */ |
| 123 | 123 | public function auth() |
| 124 | 124 | { |
@@ -289,7 +289,7 @@ discard block |
||
| 289 | 289 | /** |
| 290 | 290 | * Obtain an access token from Twitter. |
| 291 | 291 | * |
| 292 | - * @return bool Returns FALSE if request failed. |
|
| 292 | + * @return null|false Returns FALSE if request failed. |
|
| 293 | 293 | */ |
| 294 | 294 | private function getAccessToken() |
| 295 | 295 | { |
@@ -67,7 +67,7 @@ |
||
| 67 | 67 | } |
| 68 | 68 | |
| 69 | 69 | /** |
| 70 | - * @return int Return the love amount. |
|
| 70 | + * @return string Return the love amount. |
|
| 71 | 71 | */ |
| 72 | 72 | public function get() |
| 73 | 73 | { |
@@ -135,6 +135,9 @@ discard block |
||
| 135 | 135 | return $valid; |
| 136 | 136 | } |
| 137 | 137 | |
| 138 | + /** |
|
| 139 | + * @param string $id |
|
| 140 | + */ |
|
| 138 | 141 | private static function recover($id) |
| 139 | 142 | { |
| 140 | 143 | if (!empty($_SESSION['pfbc'][$id]['form'])) { |
@@ -158,6 +161,9 @@ discard block |
||
| 158 | 161 | } |
| 159 | 162 | } |
| 160 | 163 | |
| 164 | + /** |
|
| 165 | + * @param string $id |
|
| 166 | + */ |
|
| 161 | 167 | public static function setSessionValue($id, $element, $value) |
| 162 | 168 | { |
| 163 | 169 | $_SESSION['pfbc'][$id]['values'][$element] = $value; |
@@ -166,6 +172,7 @@ discard block |
||
| 166 | 172 | /** |
| 167 | 173 | * Validation errors are saved in the session after the form submission, and will be displayed to the user |
| 168 | 174 | * when redirected back to the form. |
| 175 | + * @param string $id |
|
| 169 | 176 | */ |
| 170 | 177 | public static function setError($id, $messages, $element = '') |
| 171 | 178 | { |
@@ -204,6 +211,9 @@ discard block |
||
| 204 | 211 | } |
| 205 | 212 | } |
| 206 | 213 | |
| 214 | + /** |
|
| 215 | + * @param string $id |
|
| 216 | + */ |
|
| 207 | 217 | public static function setSuccess($id, $message, $element = '') |
| 208 | 218 | { |
| 209 | 219 | return (new Design)->setFlashMsg($message, Design::SUCCESS_TYPE); |