Completed
Push — 2.1 ( 575609...0aca17 )
by Alexander
51:27 queued 13:06
created
framework/helpers/BaseHtml.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
 
209 209
     /**
210 210
      * Generates a link tag that refers to an external CSS file.
211
-     * @param array|string $url the URL of the external CSS file. This parameter will be processed by [[Url::to()]].
211
+     * @param string|boolean $url the URL of the external CSS file. This parameter will be processed by [[Url::to()]].
212 212
      * @param array $options the tag options in terms of name-value pairs. The following options are specially handled:
213 213
      *
214 214
      * - condition: specifies the conditional comments for IE, e.g., `lt IE 9`. When this is specified,
@@ -1854,7 +1854,7 @@  discard block
 block discarded – undo
1854 1854
      * ```
1855 1855
      *
1856 1856
      * @param array $options the options to be modified.
1857
-     * @param string|array $class the CSS class(es) to be added
1857
+     * @param string $class the CSS class(es) to be added
1858 1858
      */
1859 1859
     public static function addCssClass(&$options, $class)
1860 1860
     {
Please login to merge, or discard this patch.
framework/web/Response.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -789,7 +789,7 @@
 block discarded – undo
789 789
      * });
790 790
      * ```
791 791
      *
792
-     * @param string|array $url the URL to be redirected to. This can be in one of the following formats:
792
+     * @param string $url the URL to be redirected to. This can be in one of the following formats:
793 793
      *
794 794
      * - a string representing a URL (e.g. "http://example.com")
795 795
      * - a string representing a URL alias (e.g. "@example.com")
Please login to merge, or discard this patch.
framework/web/User.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
      * stored in session and reconstruct the corresponding identity object, if it has not done so before.
176 176
      * @param bool $autoRenew whether to automatically renew authentication status if it has not been done so before.
177 177
      * This is only useful when [[enableSession]] is true.
178
-     * @return IdentityInterface|null the identity object associated with the currently logged-in user.
178
+     * @return null|boolean the identity object associated with the currently logged-in user.
179 179
      * `null` is returned if the user is not logged in (not authenticated).
180 180
      * @see login()
181 181
      * @see logout()
@@ -259,7 +259,7 @@  discard block
 block discarded – undo
259 259
      * with the provided access token. If successful, it will call [[login()]] to log in the authenticated user.
260 260
      * If authentication fails or [[login()]] is unsuccessful, it will return null.
261 261
      * @param string $token the access token
262
-     * @param mixed $type the type of the token. The value of this parameter depends on the implementation.
262
+     * @param string $type the type of the token. The value of this parameter depends on the implementation.
263 263
      * For example, [[\yii\filters\auth\HttpBearerAuth]] will set this parameter to be `yii\filters\auth\HttpBearerAuth`.
264 264
      * @return IdentityInterface|null the identity associated with the given access token. Null is returned if
265 265
      * the access token is invalid or [[login()]] is unsuccessful.
Please login to merge, or discard this patch.
framework/log/Logger.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -197,7 +197,7 @@  discard block
 block discarded – undo
197 197
      * `$categories` and `$excludeCategories` as parameters to retrieve the
198 198
      * results that you are interested in.
199 199
      *
200
-     * @param array $categories list of categories that you are interested in.
200
+     * @param string[] $categories list of categories that you are interested in.
201 201
      * You can use an asterisk at the end of a category to do a prefix match.
202 202
      * For example, 'yii\db\*' will match categories starting with 'yii\db\',
203 203
      * such as `yii\db\Connection`.
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
      * Returns the statistical results of DB queries.
248 248
      * The results returned include the number of SQL statements executed and
249 249
      * the total time spent.
250
-     * @return array the first element indicates the number of SQL statements executed,
250
+     * @return integer[] the first element indicates the number of SQL statements executed,
251 251
      * and the second element the total time spent in SQL execution.
252 252
      */
253 253
     public function getDbProfiling()
Please login to merge, or discard this patch.