Completed
Branch master (d39ff3)
by Pierre-Henry
32:32
created
_protected/app/system/modules/admin123/forms/SettingForm.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -335,7 +335,7 @@
 block discarded – undo
335 335
     /**
336 336
      * Get the list of modules that are possible to enable as the default system module.
337 337
      *
338
-     * @return array
338
+     * @return string[]
339 339
      */
340 340
     private static function getActivatableDefMods()
341 341
     {
Please login to merge, or discard this patch.
_protected/framework/Compress/Minify/Js.class.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -388,6 +388,7 @@
 block discarded – undo
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)
Please login to merge, or discard this patch.
_protected/framework/Parse/SysVar.class.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
92 92
     }
93 93
 
94 94
     /**
95
-     * @return bool
95
+     * @return integer
96 96
      */
97 97
     private function notParsingVars()
98 98
     {
Please login to merge, or discard this patch.
_install/inc/fns/misc.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -316,7 +316,7 @@
 block discarded – undo
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
 {
Please login to merge, or discard this patch.
_protected/app/system/core/classes/design/LostPwdDesignCore.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
_protected/app/system/core/models/CommentCoreModel.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@
 block discarded – undo
87 87
      * @param int $iRecipientId
88 88
      * @param string $sTable
89 89
      *
90
-     * @return array|bool|float|int|object|string
90
+     * @return integer
91 91
      */
92 92
     public function total($iRecipientId, $sTable)
93 93
     {
Please login to merge, or discard this patch.
app/system/modules/admin123/forms/processing/AddFakeProfilesFormProcess.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
_protected/app/system/modules/connect/inc/class/Microsoft.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -162,7 +162,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
_protected/app/system/modules/connect/inc/class/Twitter.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     {
Please login to merge, or discard this patch.