Skip to content

Commit c72d8e7

Browse files
authored
Fix styles (#11)
1 parent d4f77ab commit c72d8e7

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

tests/Fixtures/Type/model-find.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,7 @@
3131
assertType('list<array{user_id: int, group: string, created_at: string}>', $groups->find(null));
3232
assertType('list<array{user_id: int, group: string, created_at: string}>', $groups->find([1, 2, 3]));
3333

34-
/**
35-
* @param int|string|null $id
36-
*/
37-
function bar($id): void
34+
function bar(null|int|string $id): void
3835
{
3936
$model = model(UserModel::class);
4037

0 commit comments

Comments
 (0)