Skip to content

Commit c5521c9

Browse files
committed
Fix code-style error
1 parent 43e5c66 commit c5521c9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/unit/PseudoTypes/NonEmptyListTest.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ public function provideArrays(): array
4242
'simple non-empty-list' => [new NonEmptyList(), 'non-empty-list'],
4343
'non-empty-list of mixed' => [new NonEmptyList(new Mixed_()), 'non-empty-list'],
4444
'non-empty-list of single type' => [new NonEmptyList(new String_()), 'non-empty-list<string>'],
45-
'non-empty-list of compound type' => [new NonEmptyList(new Compound([new Integer(), new String_()])), 'non-empty-list<int|string>'],
45+
'non-empty-list of compound type' =>
46+
[new NonEmptyList(new Compound([new Integer(), new String_()])), 'non-empty-list<int|string>'],
4647
];
4748
}
4849
}

0 commit comments

Comments
 (0)