Completed
Branch master (0dd1a0)
by Pierre-Henry
32:33
created
_protected/app/system/core/classes/design/LostPwdDesignCore.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      *
25 25
      * @param string $sMod
26 26
      * @param boolean $bPrint Print or Return the HTML code. Default TRUE
27
-     * @return void
27
+     * @return string|null
28 28
      */
29 29
     public static function link($sMod, $bPrint = true)
30 30
     {
Please login to merge, or discard this patch.
_protected/app/system/core/models/UserCoreModel.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
      * @param string $sPassword
72 72
      * @param string $sTable Default 'Members'
73 73
      *
74
-     * @return mixed (boolean "true" or string "message")
74
+     * @return string|boolean (boolean "true" or string "message")
75 75
      */
76 76
     public function login($sEmail, $sPassword, $sTable = 'Members')
77 77
     {
@@ -420,6 +420,7 @@  discard block
 block discarded – undo
420 420
      *
421 421
      * @param integer iProfileId
422 422
      * @param integer $iStatus Values: 0 = Offline, 1 = Online, 2 = Busy, 3 = Away
423
+     * @param integer $iProfileId
423 424
      *
424 425
      * @return void
425 426
      */
@@ -1023,7 +1024,7 @@  discard block
 block discarded – undo
1023 1024
      * @param integer $iOffset
1024 1025
      * @param integer $iLimit
1025 1026
      *
1026
-     * @return stdClass|integer Object with the users list returned or integer for the total number users returned.
1027
+     * @return integer Object with the users list returned or integer for the total number users returned.
1027 1028
      */
1028 1029
     public function getGeoProfiles($sCountry, $sCity, $bCount, $sOrder, $iOffset, $iLimit)
1029 1030
     {
Please login to merge, or discard this patch.
_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/Cache/Cache.class.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -186,7 +186,7 @@
 block discarded – undo
186 186
      *
187 187
      * @param string $sData
188 188
      *
189
-     * @return string|null|self If the cache is disabled, returns null, otherwise returns this class.
189
+     * @return null|Cache If the cache is disabled, returns null, otherwise returns this class.
190 190
      */
191 191
     public function put($sData)
192 192
     {
Please login to merge, or discard this patch.
_protected/framework/Layout/Html/Design.class.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -617,7 +617,7 @@
 block discarded – undo
617 617
      * @param integer $iSize
618 618
      * @param boolean $bPrint Print or Return the HTML code.
619 619
      *
620
-     * @return void|string The default 150px avatar URL or the user avatar URL.
620
+     * @return string The default 150px avatar URL or the user avatar URL.
621 621
      */
622 622
     public function getUserAvatar($sUsername, $sSex = '', $iSize = null, $bPrint = true)
623 623
     {
Please login to merge, or discard this patch.