Skip to content

Commit 0978c57

Browse files
authored
Merge pull request #3560 from natanfelles/param
Update PHPDoc param from array to mixed
2 parents b031a3b + a9a28c7 commit 0978c57

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

system/Common.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -996,7 +996,7 @@ function remove_invisible_characters(string $str, bool $urlEncoded = true): stri
996996
* have a route defined in the routes Config file.
997997
*
998998
* @param string $method
999-
* @param array ...$params
999+
* @param mixed ...$params
10001000
*
10011001
* @return false|string
10021002
*/

system/Router/RouteCollection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1206,7 +1206,7 @@ public function environment(string $env, \Closure $callback): RouteCollectionInt
12061206
* reverseRoute('Controller::method', $param1, $param2);
12071207
*
12081208
* @param string $search
1209-
* @param array ...$params
1209+
* @param mixed ...$params
12101210
*
12111211
* @return string|false
12121212
*/

0 commit comments

Comments
 (0)