Completed
Branch master (4c33f7)
by Pierre-Henry
32:33
created
_protected/app/system/core/classes/design/AvatarDesignCore.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
     }
136 136
 
137 137
     /**
138
-     * @return array
138
+     * @return string[]
139 139
      */
140 140
     private function getAdminAvatarDetails()
141 141
     {
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
     }
148 148
 
149 149
     /**
150
-     * @return array
150
+     * @return string[]
151 151
      */
152 152
     private function getGhostAvatarDetails()
153 153
     {
Please login to merge, or discard this patch.
_protected/framework/Http/Http.class.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
     /**
86 86
      * @param int $iStatus The "code" for the HTTP status.
87 87
      *
88
-     * @return string|bool $iStatus Returns the "HTTP status code" if found otherwise returns "false"
88
+     * @return integer $iStatus Returns the "HTTP status code" if found otherwise returns "false"
89 89
      */
90 90
     public static function getStatusCodes($iStatus)
91 91
     {
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
     /**
123 123
      * Set one or multiple headers.
124 124
      *
125
-     * @param string|array $mHeaders Headers to send.
125
+     * @param string $mHeaders Headers to send.
126 126
      *
127 127
      * @throws Exception
128 128
      */
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
      * @param string $sUsr
186 186
      * @param string $sPwd
187 187
      *
188
-     * @return bool TRUE if the authentication is correct, otherwise FALSE.
188
+     * @return null|boolean TRUE if the authentication is correct, otherwise FALSE.
189 189
      */
190 190
     public static function requireAuth($sUsr, $sPwd)
191 191
     {
Please login to merge, or discard this patch.