@@ -202,7 +202,7 @@ discard block |
||
202 | 202 | |
203 | 203 | /** |
204 | 204 | * Generates a link tag that refers to an external CSS file. |
205 | - * @param array|string $url the URL of the external CSS file. This parameter will be processed by [[Url::to()]]. |
|
205 | + * @param string|boolean $url the URL of the external CSS file. This parameter will be processed by [[Url::to()]]. |
|
206 | 206 | * @param array $options the tag options in terms of name-value pairs. The following option is specially handled: |
207 | 207 | * |
208 | 208 | * - condition: specifies the conditional comments for IE, e.g., `lt IE 9`. When this is specified, |
@@ -280,7 +280,7 @@ discard block |
||
280 | 280 | |
281 | 281 | /** |
282 | 282 | * Generates a form start tag. |
283 | - * @param array|string $action the form action URL. This parameter will be processed by [[Url::to()]]. |
|
283 | + * @param string $action the form action URL. This parameter will be processed by [[Url::to()]]. |
|
284 | 284 | * @param string $method the form submission method, such as "post", "get", "put", "delete" (case-insensitive). |
285 | 285 | * Since most browsers only support "post" and "get", if other methods are given, they will |
286 | 286 | * be simulated using "post", and a hidden input will be added which contains the actual method type. |