Skip to content

Commit 6b7a996

Browse files
fix: rename invalid types
1 parent c124b7b commit 6b7a996

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Core/Util.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ final class Util
2828
/**
2929
* @return array<string,mixed>
3030
*/
31-
public static function get_object_vars(object $object1): array
31+
public static function get_object_vars(object $object): array
3232
{
33-
return get_object_vars($object1);
33+
return get_object_vars($object);
3434
}
3535

3636
/**

0 commit comments

Comments
 (0)