Skip to content

Commit 5897180

Browse files
CS fixes
1 parent 0bb45ce commit 5897180

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

types/Support/Collection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -639,7 +639,7 @@ function ($collection, $count) {
639639
}));
640640
assertType('Illuminate\Support\Collection<int<0, 1>, Illuminate\Support\Collection<int, string>>', $collection::make(['string'])->partition('string', '=', 'string'));
641641
assertType('Illuminate\Support\Collection<int<0, 1>, Illuminate\Support\Collection<int, string>>', $collection::make(['string'])->partition('string', 'string'));
642-
assertType('Illuminate\Support\Collection<int<0, 1>, Illuminate\Support\Collection<int, string>>', $collection::make(['string'])->partition('string', ));
642+
assertType('Illuminate\Support\Collection<int<0, 1>, Illuminate\Support\Collection<int, string>>', $collection::make(['string'])->partition('string'));
643643

644644
assertType('Illuminate\Support\Collection<int, int>', $collection->make([1])->concat([2]));
645645
assertType('Illuminate\Support\Collection<int, string>', $collection->make(['string'])->concat(['string']));

types/Support/LazyCollection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@
535535
}));
536536
assertType('Illuminate\Support\LazyCollection<int<0, 1>, Illuminate\Support\LazyCollection<int, string>>', $collection::make(['string'])->partition('string', '=', 'string'));
537537
assertType('Illuminate\Support\LazyCollection<int<0, 1>, Illuminate\Support\LazyCollection<int, string>>', $collection::make(['string'])->partition('string', 'string'));
538-
assertType('Illuminate\Support\LazyCollection<int<0, 1>, Illuminate\Support\LazyCollection<int, string>>', $collection::make(['string'])->partition('string', ));
538+
assertType('Illuminate\Support\LazyCollection<int<0, 1>, Illuminate\Support\LazyCollection<int, string>>', $collection::make(['string'])->partition('string'));
539539

540540
assertType('Illuminate\Support\LazyCollection<int, int>', $collection->make([1])->concat([2]));
541541
assertType('Illuminate\Support\LazyCollection<int, string>', $collection->make(['string'])->concat(['string']));

0 commit comments

Comments
 (0)