Merge pull request #10352 from oddnoc/phan-help

Correct declaration of variadic $args as array
This commit is contained in:
Loz Calver 2022-06-13 09:18:14 +01:00 committed by GitHub
commit be19fa7f3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ trait Injectable
* $list = DataList::create(SiteTree::class);
* $list = SiteTree::get();
*
* @param array $args
* @param mixed $args
* @return static
*/
public static function create(...$args)